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