Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public DishIngredientController(IDishIngredientService dishIngredientService)
 {
     m_dishIngredientService = dishIngredientService;
 }