Пример #1
0
 public int AppClassDetailDeleted(decimal pAppHeaderID, string pLanguage)
 {
     try
     {
         var objData = new AppClassDetail_DA();
         return(objData.AppClassDetailDeleted(pAppHeaderID, pLanguage));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(ErrorCode.Error);
     }
 }
Пример #2
0
 public int AppClassDetailInsertBatch(List <AppClassDetailInfo> pInfo, decimal pAppHeaderid, string pLanguage)
 {
     try
     {
         var objData = new AppClassDetail_DA();
         return(objData.AppClassDetailInsertBatch(pInfo, pAppHeaderid, pLanguage));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(ErrorCode.Error);
     }
 }