Example #1
0
 public decimal Update(AuthorsInfo pInfo)
 {
     try
     {
         Author_DA _obj_da = new Author_DA();
         return(_obj_da.Update(pInfo));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(ErrorCode.Error);
     }
 }
Example #2
0
 public int Deleted(string p_case_code, string pLanguage)
 {
     try
     {
         Author_DA _obj_da = new Author_DA();
         return(_obj_da.Deleted(p_case_code, pLanguage));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(ErrorCode.Error);
     }
 }
Example #3
0
 public decimal Insert(List <AuthorsInfo> pInfo)
 {
     try
     {
         Author_DA _obj_da = new Author_DA();
         return(_obj_da.Insert(pInfo));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(ErrorCode.Error);
     }
 }