public async Task <int> AddLevel2(Level2VM modelVM)
 {
     try
     {
         return(await StdRepo.ExcuteStoredProcedureToSave <Level2VM>(GlobalSPNames.AddLevel2SPName, modelVM));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public async Task <HttpResponseMessage> AddLevel2(Level2VM modelVM)
 {
     try
     {
         string username      = RequestContext.Principal.Identity.Name;
         string clientAddress = HttpContext.Current.Request.UserHostAddress;
         return(Request.CreateResponse(HttpStatusCode.OK, await corepo.AddLevel2(modelVM)));
     }
     catch (Exception ex)
     {
         LogHelper.WriteLog(HttpContext.Current.Request, ex, RequestContext.Principal.Identity.Name);
         return(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex));
     }
 }