public ScheduleEntriesController(
     ArtaplanContext context,
     IMapper mapper,
     IScheduleEntryService scheduleEntryService,
     IJobStageService jobStageService
     )
 {
     _mapper  = mapper;
     _context = context;
     _scheduleEntryService = scheduleEntryService;
     _jobStageService      = jobStageService;
 }
Esempio n. 2
0
 public JobStageService(ArtaplanContext context, IUserProvider userProvider, IScheduleEntryService scheduleEntryService)
 {
     _context = context;
     userId   = userProvider.GetUserId();
     _scheduleEntryService = scheduleEntryService;
 }