Пример #1
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;
 }
Пример #2
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;
 }
Пример #3
0
 public ArtProcessService(IArtProcessRepository repoArticalNo, IMapper mapper, MapperConfiguration configMapper)
 {
     _configMapper  = configMapper;
     _mapper        = mapper;
     _repoArticalNo = repoArticalNo;
 }