Exemple #1
0
 public static bool CheckDuplicateAccount(string accountName, int accountId)
 {
     return(AccountsMasterRepository.CheckDuplicateAccount(accountName, accountId));
 }
Exemple #2
0
 public static bool Delete(int AccountsMasterId)
 {
     return(AccountsMasterRepository.Delete(AccountsMasterId));
 }
Exemple #3
0
 public static tblAccountsMasterDTO Get(int AccountsMasterId)
 {
     return(AccountsMasterRepository.Get(AccountsMasterId));
 }
Exemple #4
0
 public static List <tblAccountsMasterDTO> GetAll()
 {
     return(AccountsMasterRepository.GetAll());
 }
Exemple #5
0
 public static int Save(tblAccountsMasterDTO tblAccountsMasterDTO)
 {
     return(AccountsMasterRepository.Save(tblAccountsMasterDTO));
 }