コード例 #1
0
ファイル: DishService.cs プロジェクト: Yazurka/FoodApp
 public DishService(IQueryExecutor queryExecutor, ICommandExecutor commandExecutor, IIdGenerator idGenerator, IDishTagService dishTagService, IDishIngredientService dishIngredientService)
 {
     m_queryExecutor         = queryExecutor;
     m_commandExecutor       = commandExecutor;
     m_idGenerator           = idGenerator;
     m_dishTagService        = dishTagService;
     m_dishIngredientService = dishIngredientService;
 }
コード例 #2
0
 public DishIngredientController(IDishIngredientService dishIngredientService)
 {
     m_dishIngredientService = dishIngredientService;
 }