Пример #1
0
 public async Task <ICollection <SentRecipe> > DeleteRecipe(int id)
 {
     if (await _repo.DeleteRecipe(id))
     {
         return(await getAllSentRecipe());
     }
     return(null);
 }