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