public HttpResponseMessage DeleteTransproInformation(TransproInformationModel model) { IUnitOfWork uWork = new UnitOfWork(); ITransproInformationRepository transproInformation = new TransproInformationRepository(uWork); ITransproInformationService transproInformationService = new TransproInformationService(transproInformation); try { if (this.ModelState.IsValid) { var result = transproInformationService.DeleteTransproInformation(model); if (result != null) { return(Request.CreateResponse(HttpStatusCode.OK, result)); } else { string message = "Not deleted successfully"; return(Request.CreateErrorResponse(HttpStatusCode.Forbidden, message)); } } else { return(Request.CreateErrorResponse(HttpStatusCode.BadRequest, ModelState)); } } catch (Exception ex) { return(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex)); } }