Beispiel #1
0
 public MoleculeController(IMoleculeService moleculeService, ISubstanceService substanceService,
                           IEssentialOilMoleculeService essentialOilMoleculeService, IEffectMoleculeService effectMoleculeService)
 {
     _moleculeService             = moleculeService;
     _substanceService            = substanceService;
     _essentialOilMoleculeService = essentialOilMoleculeService;
     _effectMoleculeService       = effectMoleculeService;
 }
 public EssentialOilController(IEssentialOilService essentialOilService, IMoleculeService moleculeService,
                               ISubstanceService substanceService, IEssentialOilMoleculeService essentialOilMoleculeService,
                               IEffectService effectService, ICategoryService categoryService,
                               IEssentialOilEffectService essentialOilEffectService)
 {
     _essentialOilService         = essentialOilService;
     _moleculeService             = moleculeService;
     _substanceService            = substanceService;
     _essentialOilMoleculeService = essentialOilMoleculeService;
     _effectService             = effectService;
     _categoryService           = categoryService;
     _essentialOilEffectService = essentialOilEffectService;
 }