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