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