public void Update(TMSOtMaxTimeViewModel Vm)
        {
            var data = _mapper.Map <TMSOtMaxTimeViewModel, TMSOtMaxTime>(Vm);

            _tMSOtMaxTimeRepository.Update(data);
            SaveChanges();
        }
Esempio n. 2
0
 public IActionResult Update([FromBody] TMSOtMaxTimeViewModel Vm)
 {
     if (!ModelState.IsValid)
     {
         var allErrors = ModelState.Values.SelectMany(v => v.Errors);
         return(new BadRequestObjectResult(new GenericResult(false, allErrors)));
     }
     else
     {
         try
         {
             _tmsOtMaxTimeService.Update(Vm);
             return(new OkObjectResult(new GenericResult(true, "Update Success")));
         }
         catch (Exception ex)
         {
             return(new OkObjectResult(new GenericResult(false, ex.Message)));
         }
     }
 }