public virtual ActionResult ManufacturerTemplateUpdate(ManufacturerTemplateModel model) { if (!_permissionService.Authorize(StandardPermissionProvider.ManageMaintenance)) { return(AccessDeniedView()); } if (!ModelState.IsValid) { return(Json(new DataSourceResult { Errors = ModelState.SerializeErrors() })); } var template = _manufacturerTemplateService.GetManufacturerTemplateById(model.Id); if (template == null) { throw new ArgumentException("No template found with the specified id"); } template = model.ToEntity(template); _manufacturerTemplateService.UpdateManufacturerTemplate(template); return(new NullJsonResult()); }
public ActionResult ManufacturerTemplateUpdate(ManufacturerTemplateModel model, GridCommand command) { if (!_permissionService.Authorize(StandardPermissionProvider.ManageMaintenance)) { return(AccessDeniedView()); } if (!ModelState.IsValid) { //display the first model error var modelStateErrors = this.ModelState.Values.SelectMany(x => x.Errors).Select(x => x.ErrorMessage); return(Content(modelStateErrors.FirstOrDefault())); } var template = _manufacturerTemplateService.GetManufacturerTemplateById(model.Id); if (template == null) { throw new ArgumentException("No template found with the specified id"); } template = model.ToEntity(template); _manufacturerTemplateService.UpdateManufacturerTemplate(template); return(ManufacturerTemplates(command)); }
public IActionResult ManufacturerTemplateUpdate(ManufacturerTemplateModel model) { if (!ModelState.IsValid) { return(Json(new DataSourceResult { Errors = ModelState.SerializeErrors() })); } var template = _manufacturerTemplateService.GetManufacturerTemplateById(model.Id); if (template == null) { throw new ArgumentException("No template found with the specified id"); } if (ModelState.IsValid) { template = model.ToEntity(template); _manufacturerTemplateService.UpdateManufacturerTemplate(template); return(new NullJsonResult()); } return(ErrorForKendoGridJson(ModelState)); }