Пример #1
0
 // GET: /<controller>/
 public AuthenticationController(
     IRepositoryAuthentication <PersonalLogin> authPersonalRepository,
     IRepositoryAuthentication <EmpresarialLogin> authEmpresarialRepository)
 {
     _authPersonalRepository    = authPersonalRepository;
     _authEmpresarialRepository = authEmpresarialRepository;
 }
Пример #2
0
        //   readonly IRepository<SavePaymeId> _profile;

        public ProfileController(
            IBroker broker,
            IRepositoryAuthentication <PersonalLogin> authPersonalRepository,
            IRepository <ValidatePaymeId> profile,
            IRepository <ValidateToken> token)
        {
            _broker = broker;
            _authPersonalRepository = authPersonalRepository;
            _token = token;
        }
Пример #3
0
 public Business(IRepositoryAuthentication iauth, IRepositoryBanking ibank, IRepositoryLoan iloan)
 {
     _iauth = iauth;
     _ibank = ibank;
     _iloan = iloan;
 }
Пример #4
0
 public BusinessAuth(IRepositoryAuthentication irep)
 {
     _irep = irep;
 }
 public Business(IRepositoryAuthentication iauth, IRepositoryBanking ibank)
 {
     _iauth = iauth;
     _ibank = ibank;
 }
 public BusinessAuthentication(IRepositoryAuthentication authRepo)
 {
     _authRepository = authRepo;
 }
Пример #7
0
 public WebApiAuthService(AuthenticationRepository authenticationRepository)
 {
     this.iRepositoryUser = authenticationRepository;
 }
Пример #8
0
 public BusinessAuthentication(IRepositoryAuthentication irepauth)
 {
     _irepauth = irepauth;
 }