Пример #1
0
 public SenderApplicationController(
     ISenderApplicationManager manager,
     IClientRepository clients,
     IIdentityService identity,
     ICountryRepository countries,
     ISenderRepository senders,
     IApplicationRepository applications)
 {
     _manager      = manager;
     _clients      = clients;
     _identity     = identity;
     _countries    = countries;
     _senders      = senders;
     _applications = applications;
 }
Пример #2
0
		public SenderApplicationController(
			ISenderApplicationManager manager,
			IClientRepository clients,
			IIdentityService identity,
			ICountryRepository countries,
			ISenderRepository senders,
			IApplicationRepository applications)
		{
			_manager = manager;
			_clients = clients;
			_identity = identity;
			_countries = countries;
			_senders = senders;
			_applications = applications;
		}