12 lines
320 B
C#
12 lines
320 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IPersonAddressState
|
|
{
|
|
|
|
string TestStatic_GetDefaultValue() => PersonAddressState.GetDefaultValue(); // {{1}}SingletonValue
|
|
|
|
static string GetDefaultValue() => PersonAddressState.GetDefaultValue(); // {{1}}SingletonValue
|
|
|
|
// ...
|
|
|
|
} |