Example #1
0
 public static DTO_Account GetAccount(int id)
 {
     return(DAO_Account.GetAccount(id));
 }
Example #2
0
 public static void InsertUpdate(DTO_Account a)
 {
     DAO_Account.InsertUpdate(a);
 }
Example #3
0
 public static List <DTO_Account> GetAllAccount()
 {
     return(DAO_Account.GetAllAccount());
 }