Beispiel #1
0
 public MakeGlueService(
     IGlueIngredientRepository repoGlueIngredient,
     IGlueRepository repoGlue,
     IMakeGlueRepository repoMakeGlue,
     IMapper mapper,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoGlue           = repoGlue;
     _repoMakeGlue       = repoMakeGlue;
     _repoGlueIngredient = repoGlueIngredient;
 }
Beispiel #2
0
 public MakeGlueService(
     IGlueIngredientRepository repoGlueIngredient,
     IGlueRepository repoGlue,
     IBPFCEstablishRepository repoBPFC,
     IMakeGlueRepository repoMakeGlue,
     IMapper mapper,
     IBuildingRepository repoBuilding,
     IBuildingGlueRepository repoBuildingGlue,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoGlue           = repoGlue;
     _repoBPFC           = repoBPFC;
     _repoMakeGlue       = repoMakeGlue;
     _repoGlueIngredient = repoGlueIngredient;
     _repoBuilding       = repoBuilding;
     _repoBuildingGlue   = repoBuildingGlue;
 }