Esempio n. 1
0
        //private readonly IIdentityService _identity;

        public AuthenticationService(
            IUserRepository users,
            IPasswordConverter passwordConverter)
        //IIdentityService identity)
        {
            _users             = users;
            _passwordConverter = passwordConverter;
            //_identity = identity;
        }
Esempio n. 2
0
		//private readonly IIdentityService _identity;

		public AuthenticationService(
			IUserRepository users,
			IPasswordConverter passwordConverter)
			//IIdentityService identity)
		{
			_users = users;
			_passwordConverter = passwordConverter;
			//_identity = identity;
		}
Esempio n. 3
0
		public CarrierRepository(IPasswordConverter converter, ISqlProcedureExecutor executor)
		{
			_converter = converter;
			_executor = executor;
		}
Esempio n. 4
0
 public SenderRepository(IPasswordConverter converter, ISqlProcedureExecutor executor)
 {
     _converter = converter;
     _executor  = executor;
 }