public IActionResult Put(long id, [FromBody] EngineType engineType)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, engineType, dto => dto.Id == id));
 }
 public IActionResult Put(long id, [FromBody] Model model)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, model, dto => dto.Id == id));
 }
Beispiel #3
0
 public IActionResult Put(long id, [FromBody] Salon salon)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, salon, dto => dto.Id == id));
 }
 public IActionResult Put(long id, [FromBody] Country country)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, country, modelDto => modelDto.Id == id));
 }
Beispiel #5
0
 public IActionResult Put(long id, [FromBody] Manufacturer manufacturer)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, manufacturer, dto => dto.Id == id));
 }
 public IActionResult Put(long id, [FromBody] Inventory inventory)
 {
   return ControllerUtil.Put(this, _repo, _mapper, inventory, dto => dto.Id == id);
 }
Beispiel #7
0
 public IActionResult Put(long id, [FromBody] City city)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, city, cityDto => cityDto.Id == id));
 }
 public IActionResult Put(long id, [FromBody] Equipment equipment)
 {
     return(ControllerUtil.Put(this, _repo, _mapper, equipment, dto => dto.Id == id));
 }