Example #1
0
 public WorkflowsController(
     IAgencyQueryService agencyQueryService,
     IWorkflowQueryService workflowQueryService,
     IWorkflowCommandService workflowCommandService)
 {
     _agencyQueryService     = agencyQueryService;
     _workflowQueryService   = workflowQueryService;
     _workflowCommandService = workflowCommandService;
 }
Example #2
0
 public AgenciesController(
     IAgencyQueryService agencyQueryService,
     ISystemQueryService systemQueryService,
     IUserQueryService userQueryService)
 {
     _agencyQueryService = agencyQueryService;
     _systemQueryService = systemQueryService;
     _userQueryService   = userQueryService;
 }
Example #3
0
 public UsersController(
     IAgencyQueryService agencyQueryService,
     IUserCommandService userCommandService,
     IUserQueryService userQueryService)
 {
     _agencyQueryService = agencyQueryService;
     _userQueryService   = userQueryService;
     _userCommandService = userCommandService;
 }
 public CodeManagementController(
     IAgencyQueryService agencyQueryService,
     ICodeSetQueryService codeSetQueryService,
     ICodeSetCommandService codeSetCommandService)
 {
     _agencyQueryService = agencyQueryService;
     _codeSetQueryService = codeSetQueryService;
     _codeSetCommandService = codeSetCommandService;
 }
Example #5
0
 public RolesController(
     IAgencyQueryService agencyQueryService,
     IRoleCommandService roleCommandService,
     IRoleQueryService roleQueryService)
 {
     _agencyQueryService = agencyQueryService;
     _roleCommandService = roleCommandService;
     _roleQueryService   = roleQueryService;
 }
Example #6
0
        public QueryController(IUserQueryService userQueryService,
                               IAgencyQueryService agencyQueryService,
                               IQueryQueryService queriesQueryService,
                               IQueryCommandService queriesCommandService)
        {
            _userQueryService      = userQueryService;
            _agencyQueryService    = agencyQueryService;
            _queriesQueryService   = queriesQueryService;
            _queriesCommandService = queriesCommandService;

            //Get the Tenant Name from the setting in the web.config
            //TTMS expects a Tenant Name and RMS does not have the concept of a Tenant
            _tenantName = ConfigurationManager.AppSettings["TenantName"];
        }
 public ConfigurationController(IAgencyCommandService agencyCommandService, IAgencyQueryService agencyQueryService)
 {
     _agencyQueryService   = agencyQueryService;
     _agencyCommandService = agencyCommandService;
 }
 public NcicCodeSetController(IAgencyQueryService agencyQueryService, ICodeSetQueryService codeSetQueryService)
 {
     _agencyQueryService  = agencyQueryService;
     _codeSetQueryService = codeSetQueryService;
 }
Example #9
0
 public ReportHeaderBuilder(IAgencyQueryService agencyQueryService)
 {
     _agencyQueryService = agencyQueryService;
 }