public async Task <IHttpActionResult> Put(int holidayTranslationId, [FromBody] dtoQR.HolidayTranslation dtoItem) { try { if (!base.OnActionExecuting(out HttpStatusCode httpStatusCode, out string message)) { return(Content(httpStatusCode, message)); } if (dtoItem == null) { return(BadRequest()); } dtoItem.HolidayTranslationId = holidayTranslationId; var updatedDBItem = _factory.Create(dtoItem); // map var result = await Repo.UpdateAsync(updatedDBItem); RunCustomLogicAfterUpdatePut(ref updatedDBItem, ref result); if (result.Status == cghEnums.RepositoryActionStatus.Updated) { // map to dto var updatedDTOItem = _factory.Create(result.Entity); return(Ok(updatedDTOItem)); } else if (result.Status == cghEnums.RepositoryActionStatus.NotFound) { return(NotFound()); } Warn("Unable to update object via Web API", LogMessageType.Instance.Warn_WebApi, result.Exception, httpResponseStatusCode: 400, url: Request.RequestUri.ToString()); return(BadRequest()); } catch (Exception ex) { Error(message: ex.Message, logMessageType: LogMessageType.Instance.Exception_WebApi, ex: ex); if (System.Diagnostics.Debugger.IsAttached) { System.Diagnostics.Debugger.Break(); } return(InternalServerError()); } }
public async Task <IHttpActionResult> Post([FromBody] dtoQR.HolidayTranslation dtoItem) { try { if (!base.OnActionExecuting(out HttpStatusCode httpStatusCode, out string message)) { return(Content(httpStatusCode, message)); } if (dtoItem == null) { return(BadRequest()); } // try mapping & saving var newDBItem = _factory.Create(dtoItem); var result = await Repo.InsertAsync(newDBItem); RunCustomLogicAfterInsert(ref newDBItem, ref result); if (result.Status == cghEnums.RepositoryActionStatus.Created) { // map to dto var newDTOItem = _factory.Create(result.Entity); var uriFormatted = Request.RequestUri.ToString().EndsWith("/") == true?Request.RequestUri.ToString().Substring(0, Request.RequestUri.ToString().Length - 1) : Request.RequestUri.ToString(); return(Created($"{uriFormatted}/{newDTOItem.HolidayTranslationId}", newDTOItem)); } Warn("Unable to create object via Web API", LogMessageType.Instance.Warn_WebApi, result.Exception, httpResponseStatusCode: 400, url: Request.RequestUri.ToString()); return(BadRequest()); } catch (Exception ex) { Error(message: ex.Message, logMessageType: LogMessageType.Instance.Exception_WebApi, ex: ex); if (System.Diagnostics.Debugger.IsAttached) { System.Diagnostics.Debugger.Break(); } return(InternalServerError()); } }
public HolidayTranslation(ILoggingService log, IDataService <IWebApiDataServiceQR> dataService, xDTO.HolidayTranslation dto) : this(log, dataService) { _dto = dto; }
public HolidayTranslation(ILoggingService log, IDataService <IWebApiDataServiceQR> dataService) : base(log, dataService) { _dto = new xDTO.HolidayTranslation(); OnLazyLoadRequest += HandleLazyLoadRequest; }