示例#1
0
 public HoldingRequestController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService, IGridConfigService gridConfigService,
                                 IHoldingRequestService holdingRequestService)
     : base(authenticationService, diagnosticService, holdingRequestService)
 {
     _holdingRequestService = holdingRequestService;
     _gridConfigService     = gridConfigService;
 }
示例#2
0
 public RequestController(IAuthenticationService authenticationService, IGridConfigService gridConfigService,
                          IRequestService requestService, IStaticValueService staticValueService, IRenderViewToString renderViewToString, INoteRequestService noteRequestService,
                          ISystemEventService systemEventService, ILocationService locationService, IGoogleService googleService, IUserService userService,
                          IHoldingRequestService holdingRequestService, ISystemConfigurationService systemConfigurationService, IDiagnosticService diagnosticService)
     : base(authenticationService, diagnosticService, requestService)
 {
     _requestService             = requestService;
     _staticValueService         = staticValueService;
     _gridConfigService          = gridConfigService;
     _renderViewToString         = renderViewToString;
     _noteRequestService         = noteRequestService;
     _systemEventService         = systemEventService;
     _locationService            = locationService;
     _googleService              = googleService;
     _systemConfigurationService = systemConfigurationService;
     _holdingRequestService      = holdingRequestService;
     _userService       = userService;
     _diagnosticService = diagnosticService;
 }