コード例 #1
0
 public async Task <int> SaveQuotation(QutationVM obj)
 {
     try
     {
         return(await StdRepo.ExcuteStoredProcedureToSave <QutationVM>(GlobalSPNames.SaveQuotationSPName, obj));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
 public async Task <HttpResponseMessage> SaveQuotation(QutationVM obj)
 {
     try
     {
         string username      = RequestContext.Principal.Identity.Name;
         string clientAddress = HttpContext.Current.Request.UserHostAddress;
         return(Request.CreateResponse(HttpStatusCode.OK, await corepo.SaveQuotation(obj)));
     }
     catch (Exception ex)
     {
         LogHelper.WriteLog(HttpContext.Current.Request, ex, RequestContext.Principal.Identity.Name);
         return(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex));
     }
 }