示例#1
0
 public SenderApplicationManager(
     IApplicationRepository applications,
     IApplicationEditor editor,
     IForwarderService forwarders,
     ITransitRepository transits)
 {
     _applications = applications;
     _editor       = editor;
     _forwarders   = forwarders;
     _transits     = transits;
 }
示例#2
0
		public SenderApplicationManager(
			IApplicationRepository applications,
			IApplicationEditor editor,
			IForwarderService forwarders,
			ITransitRepository transits)
		{
			_applications = applications;
			_editor = editor;
			_forwarders = forwarders;
			_transits = transits;
		}
示例#3
0
 public ClientApplicationManager(
     IApplicationRepository applications,
     IClientRepository clients,
     IForwarderService forwarders,
     IApplicationEditor updater,
     ITransitService transits)
 {
     _clients      = clients;
     _applications = applications;
     _forwarders   = forwarders;
     _updater      = updater;
     _transits     = transits;
 }
示例#4
0
		public ClientApplicationManager(
			IApplicationRepository applications,
			IClientRepository clients,
			IForwarderService forwarders,
			IApplicationEditor updater,
			ITransitService transits)
		{
			_clients = clients;
			_applications = applications;
			_forwarders = forwarders;
			_updater = updater;
			_transits = transits;
		}
示例#5
0
 public AdminApplicationManager(
     IApplicationRepository applications,
     IApplicationStateManager states,
     IForwarderService forwarders,
     IApplicationEditor editor,
     IStateConfig config,
     ITransitService transitService)
 {
     _applications   = applications;
     _states         = states;
     _forwarders     = forwarders;
     _editor         = editor;
     _config         = config;
     _transitService = transitService;
 }
示例#6
0
		public AdminApplicationManager(
			IApplicationRepository applications,
			IApplicationStateManager states,
			IForwarderService forwarders,
			IApplicationEditor editor,
			IStateConfig config,
			ITransitService transitService)
		{
			_applications = applications;
			_states = states;
			_forwarders = forwarders;
			_editor = editor;
			_config = config;
			_transitService = transitService;
		}
 public UserController(IConfiguration config, IForwarderService forwarderService)
 {
     _config           = config;
     _forwarderService = forwarderService;
 }
示例#8
0
 public CommonController(IForwarderService forwarderService)
 {
     _forwarderService = forwarderService;
 }
 public AuditLogController(IForwarderService forwarderService)
 {
     _forwarderService = forwarderService;
 }
 public SystemConfigController(IForwarderService forwarderService)
 {
     _forwarderService = forwarderService;
 }