Exemplo n.º 1
0
 public IActionResult Delete(Guid id)
 {
     _locationRepo.Delete(id);
     return(new NoContentResult());
 }
Exemplo n.º 2
0
 public void DeleteById(int id)
 {
     repo.Delete(repo.Get(id));
 }