public async Task <ICollection <SentRecipe> > DeleteRecipe(int id) { if (await _repo.DeleteRecipe(id)) { return(await getAllSentRecipe()); } return(null); }