Exemplo n.º 1
0
 public async Task <JsonResult> AddNewCountry([Required] AddCountryViewModel model)
 => !ModelState.IsValid ? Json(new ResultModel().AttachModelState(ModelState)) : Json(await _locationService.AddNewCountryAsync(model));