示例#1
0
        //private readonly IIdentityService _identity;

        public AuthenticationService(
            IUserRepository users,
            IPasswordConverter passwordConverter)
        //IIdentityService identity)
        {
            _users             = users;
            _passwordConverter = passwordConverter;
            //_identity = identity;
        }
示例#2
0
		//private readonly IIdentityService _identity;

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