public int Update(accounttypes existingaccounttypes)
 {
     return(AllocateRepo().Update(existingaccounttypes));
 }
 public int Delete(accounttypes existingaccounttypes)
 {
     return(AllocateRepo().Delete(existingaccounttypes));
 }
 public long Create(accounttypes newaccounttypes)
 {
     return(AllocateRepo().Create(newaccounttypes));
 }