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