コード例 #1
0
 public PhysicalVerificationService(IPhysicalVerificationRepository physicalVerificationRepository, ETapManagementContext context
                                    , IMapper mapper)
 {
     _physicalVerificationRepository = physicalVerificationRepository;
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 public DispatchService(IDispatchReqSubConRepository dispatchReqSubConRepository, ETapManagementContext context
                        , IMapper mapper)
 {
     _dispatchReqSubConRepository = dispatchReqSubConRepository;
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public FabricationManagementService(IFabricationManagementRepository fabricationManagementRepository,
                                     ETapManagementContext context,
                                     IAssignStructureComponentRepository repository
                                     , IMapper mapper, IWebHostEnvironment webHostEnvironment)
 {
     _fabricationManagementRepository = fabricationManagementRepository;
     _context            = context;
     _mapper             = mapper;
     _repository         = repository;
     _webHostEnvironment = webHostEnvironment;
 }
コード例 #4
0
 public ScrapStructureRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
コード例 #5
0
 public DispatchReqSubConRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
コード例 #6
0
 public ReceiveRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
 public PhysicalVerificationRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
コード例 #8
0
 public ReceiveService(IReceiveRepository receiveRepository, ETapManagementContext context)
 {
     _receiveRepository = receiveRepository;
     _context           = context;
 }
コード例 #9
0
 public AuthRepository(ETapManagementContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #10
0
 public CommonRepository(ETapManagementContext context)
 {
     _context = context;
 }
コード例 #11
0
 public AssignStructureComponentRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
コード例 #12
0
 public FabricationManagementRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }
 public StrategicBusinessRepository(ETapManagementContext context, IMapper mapper, ICommonRepository commonRepo)
 {
     _context    = context;
     _mapper     = mapper;
     _commonRepo = commonRepo;
 }