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