Exemplo n.º 1
0
 public static AccountType GetInstanceByName(string name)
 {
     return(AccountTypeEnumList.FirstOrDefault(x => x.Text == name) ?? null);
 }
Exemplo n.º 2
0
 public static AccountType GetInstance(int value)
 {
     return(AccountTypeEnumList.FirstOrDefault(x => x.Value == value) ?? null);
 }