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