Пример #1
0
 public PlanService(
     IPlanRepository repoPlan,
     IGlueRepository repoGlue,
     IGlueIngredientRepository repoGlueIngredient,
     IIngredientRepository repoIngredient,
     IBuildingRepository repoBuilding,
     IBPFCEstablishRepository repoBPFC,
     IMixingInfoRepository repoMixingInfo,
     IModelNameRepository repoModelName,
     IHubContext <ECHub> hubContext,
     IMapper mapper,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoGlue           = repoGlue;
     _repoGlueIngredient = repoGlueIngredient;
     _repoIngredient     = repoIngredient;
     _repoPlan           = repoPlan;
     _repoBuilding       = repoBuilding;
     _repoModelName      = repoModelName;
     _hubContext         = hubContext;
     _repoBPFC           = repoBPFC;
     _repoMixingInfo     = repoMixingInfo;
 }
Пример #2
0
 public ModelNameService(
     IModelNameRepository repoBrand,
     IGlueRepository repoGlue,
     IGlueIngredientRepository repoGlueIngredient,
     IMailExtension mailExtension,
     IArticleNoRepository repoArticleNo,
     IProcessRepository repoProcess,
     IArtProcessRepository repoArtProcess,
     IIngredientRepository repoIngredient,
     IBPFCEstablishRepository repoBPFC,
     IModelNoRepository repoModelNO,
     ISupplierRepository supplierRepository,
     IConfiguration configuration,
     IPlanRepository repoPlan,
     IMapper mapper,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoModelName      = repoBrand;
     _repoGlueIngredient = repoGlueIngredient;
     _repoGlue           = repoGlue;
     _repoModelNO        = repoModelNO;
     _repoArticleNo      = repoArticleNo;
     _repoProcess        = repoProcess;
     _repoArtProcess     = repoArtProcess;
     _repoBPFC           = repoBPFC;
     _repoIngredient     = repoIngredient;
     _supplierRepository = supplierRepository;
     _configuration      = configuration;
     _mailExtension      = mailExtension;
     _repoPlan           = repoPlan;
 }
Пример #3
0
 public BPFCEstablishService(
     IBPFCEstablishRepository repoBPFCEstablish,
     IBPFCHistoryRepository repoBPFCHistory,
     IModelNameRepository repoModelName,
     IModelNoRepository repoModelNo,
     IConfiguration configuration,
     IMailExtension mailExtension,
     IArticleNoRepository repoArticleNo,
     IGlueRepository repoGlue,
     IGlueIngredientRepository repoGlueIngredient,
     IArtProcessRepository repoArtProcess,
     IMapper mapper,
     ICommentRepository repoComment,
     MapperConfiguration configMapper
     )
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoComment        = repoComment;
     _repoBPFCEstablish  = repoBPFCEstablish;
     _repoBPFCHistory    = repoBPFCHistory;
     _repoModelName      = repoModelName;
     _configuration      = configuration;
     _repoModelNo        = repoModelNo;
     _repoArticleNo      = repoArticleNo;
     _mailExtension      = mailExtension;
     _repoArtProcess     = repoArtProcess;
     _repoGlueIngredient = repoGlueIngredient;
     _repoGlue           = repoGlue;
 }
Пример #4
0
 public GlueService(
     IHttpContextAccessor accessor,
     IGlueRepository repoBrand,
     IModelNameRepository repoModelName,
     IGlueIngredientRepository repoGlueIngredient,
     IPartNameRepository repoPartName,
     IPartName2Repository repoPartName2,
     IPartRepository repoPart,
     IKindRepository repoKind,
     IMaterialRepository repoMaterial,
     IBPFCEstablishRepository repoBPFC,
     IMaterialNameRepository repoMaterialName,
     IHubContext <ECHub> hubContext,
     IMapper mapper,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _accessor           = accessor;
     _repoGlue           = repoBrand;
     _repoPartName       = repoPartName;
     _repoPartName2      = repoPartName2;
     _repoPart           = repoPart;
     _repoKind           = repoKind;
     _repoMaterial       = repoMaterial;
     _repoMaterialName   = repoMaterialName;
     _hubContext         = hubContext;
     _repoBPFC           = repoBPFC;
     _repoModelName      = repoModelName;
     _repoGlueIngredient = repoGlueIngredient;
 }
Пример #5
0
        public IngredientService(
            IMixingInfoRepository repoMixingInfo,
            IGlueRepository repoGlue,
            IGlueIngredientRepository repoGlueIngredient,
            IIngredientInfoReportRepository repoIngredientInfoReport,
            IPlanRepository repoPlan,
            IIngredientRepository repoIngredient,
            IHttpContextAccessor accessor,
            IIngredientInfoRepository repoIngredientInfo,
            ISupplierRepository repoSupplier,
            IBuildingGlueRepository repoBuildingGlue,
            IMapper mapper,
            MapperConfiguration configMapper
            )
        {
            _configMapper             = configMapper;
            _mapper                   = mapper;
            _repoIngredient           = repoIngredient;
            _repoIngredientInfo       = repoIngredientInfo;
            _repoSupplier             = repoSupplier;
            _accessor                 = accessor;
            _repoPlan                 = repoPlan;
            _repoIngredientInfoReport = repoIngredientInfoReport;
            _repoGlueIngredient       = repoGlueIngredient;

            _repoGlue         = repoGlue;
            _repoMixingInfo   = repoMixingInfo;
            _repoBuildingGlue = repoBuildingGlue;
        }
 public GlueIngredientService(IIngredientRepository repoIngredient, IGlueIngredientRepository repoGlueIngredient, IGlueRepository repoGlue, IMapper mapper, MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoIngredient     = repoIngredient;
     _repoGlue           = repoGlue;
     _repoGlueIngredient = repoGlueIngredient;
 }
Пример #7
0
 public MakeGlueService(
     IGlueIngredientRepository repoGlueIngredient,
     IGlueRepository repoGlue,
     IBPFCEstablishRepository repoBPFC,
     IMakeGlueRepository repoMakeGlue,
     IMapper mapper,
     MapperConfiguration configMapper)
 {
     _configMapper       = configMapper;
     _mapper             = mapper;
     _repoGlue           = repoGlue;
     _repoBPFC           = repoBPFC;
     _repoMakeGlue       = repoMakeGlue;
     _repoGlueIngredient = repoGlueIngredient;
 }