public void Delete(int id) { string result = string.Empty; ShoppingRepository repository = new ShoppingRepository(); result = repository.DeleteShoppingById(id); }
public void Post([FromBody] Shopping shopping) { string result = string.Empty; ShoppingRepository repository = new ShoppingRepository(); result = repository.DeleteShoppingById(shopping.Id_Trolley); }