Example #1
0
 public GL_LineShiftPerfService(
     IUnitOfWork unitOfWork
     , IGL_LineShiftPerfRepository lineShiftPerfRepository
     , ISystemProjectRepository systemProjectRepository
     , IGL_ShiftTimeRepository shiftTimeRepository
     , IGoldenLineRepository goldenLineRepository
     , IGL_LineRepository lineRepository
     , IGL_BuildPlanRepository buildPlanRepository) : base(lineShiftPerfRepository)
 {
     this.unitOfWork = unitOfWork;
     this.lineShiftPerfRepository = lineShiftPerfRepository;
     this.systemProjectRepository = systemProjectRepository;
     this.shiftTimeRepository     = shiftTimeRepository;
     this.goldenLineRepository    = goldenLineRepository;
     this.lineRepository          = lineRepository;
     this.buildPlanRepository     = buildPlanRepository;
 }
Example #2
0
 public GoldenLineUIService(
     IUnitOfWork unitOfWork,
     ISystemProjectRepository projectRepository,
     ISystemFunctionPlantRepository functionPlantRepository,
     IGL_ShiftTimeRepository shitTimeRepository,
     IGL_LineRepository lineRepository,
     IGL_StationRepository stationRepository,
     IGL_BuildPlanRepository buildPlanRepository,
     IGL_RestRepository gL_RestRepository,
     IGL_LineShiftResposibleUserRepository lineShiftResposibleUserRepository)
 {
     _unitOfWork          = unitOfWork;
     _projectRepository   = projectRepository;
     _funPlantRepository  = functionPlantRepository;
     _shiftTimeRepository = shitTimeRepository;
     _lineRepository      = lineRepository;
     GL_RestRepository    = gL_RestRepository;
     _stationRepository   = stationRepository;
     _buildPlanRepository = buildPlanRepository;
     _lineShiftResposibleUserRepository = lineShiftResposibleUserRepository;
 }
Example #3
0
 public GL_LineService(IGL_LineRepository lineRepository) : base(lineRepository)
 {
     this.lineRepository = lineRepository;
 }