예제 #1
0
 public StateReportQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IExcelReportFactory excelReportFactory, IOrganizationUserQueryService organizationUserQueryService)
 {
     _userContext                  = userContext;
     _excelReportFactory           = excelReportFactory;
     _session                      = customerReportingInterfaceSession.Session;
     _organizationUserQueryService = organizationUserQueryService;
 }
예제 #2
0
 public KingLivingOutboundApiPurchaseOrderQueryService(IReportingModuleSession customerReportingInterfaceSession)
 {
     _session = customerReportingInterfaceSession.Session;
 }
예제 #3
0
 public ReportEventLogQueryService(IReportingModuleSession customerReportingInterfaceSession,
                                   IUserContext userContext)
 {
     _userContext = userContext;
     _session     = customerReportingInterfaceSession.Session;
 }
예제 #4
0
 public CentralReportQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IExcelReportFactory excelReportFactory)
 {
     _userContext        = userContext;
     _excelReportFactory = excelReportFactory;
     _session            = customerReportingInterfaceSession.Session;
 }
 public OrganizationUserQueryService(IReportingModuleSession customerReportingInterfaceSession,
                                     IUserContext userContext)
 {
     _userContext = userContext;
     _session     = customerReportingInterfaceSession.Session;
 }
 public OrganizationQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IReportingPeriodQueryService reportingPeriodQueryService)
 {
     _userContext = userContext;
     _reportingPeriodQueryService = reportingPeriodQueryService;
     _session = customerReportingInterfaceSession.Session;
 }