public OrganizationQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IReportingPeriodQueryService reportingPeriodQueryService)
 {
     _userContext = userContext;
     _reportingPeriodQueryService = reportingPeriodQueryService;
     _session = customerReportingInterfaceSession.Session;
 }
Beispiel #2
0
 public ReportingPeriodController(IReportingPeriodQueryService queryService, IUserContext userContext)
 {
     _queryService = queryService;
     _userContext  = userContext;
 }