コード例 #1
0
ファイル: Query.cs プロジェクト: BenJohn24/GraphAlergeno
        public async Task <CarnePescado> CarnePescadoById([Service] IngredientesRepository repo, [Service] ITopicEventSender eventSender, int id)
        {
            CarnePescado carneId = repo.GetCarnePescadoId(id);
            await eventSender.SendAsync("RetornaCarne", carneId);

            return(carneId);
        }