public CreateUserController(ICreateUserRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

            this.repository = repository;
        }
        public CreateUserController(ICreateUserRepository repository, string catalog, LoginView view)
        {
            this._LoginId = view.LoginId.ToLong();
            this._UserId = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog = catalog;

            this.repository = repository;
        }
示例#3
0
 public CreateNewUserRequestHandler(ICreateUserRepository repository,
                                    IOptions <GraphApiSettings> graphApiSettings,
                                    IEmailSender emailWrapper,
                                    IReaderSettingsRepository readersSettingsRepository)
 {
     this.repository   = repository;
     this.emailWrapper = emailWrapper;
     this.readersSettingsRepository = readersSettingsRepository;
     this.graphApiSettings          = graphApiSettings.Value;
 }
        public CreateUserController()
        {
            this._LoginId = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog = AppUsers.GetCurrentUserDB();

            this.repository = new CreateUserProcedure
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
        public CreateUserController()
        {
            this._LoginId  = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId   = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog  = AppUsers.GetCurrentUserDB();

            this.repository = new CreateUserProcedure
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
 public CreateUserHandler(ICreateUserRepository repository)
 {
     this.repository = repository;
 }
示例#7
0
 public CreateUserUseCase(ICreateUserRepository userCreator, IRetrieveUserRepository userRetriever, IHashPasswordService passwordHasher)
 {
     this.userCreator    = userCreator;
     this.userRetriever  = userRetriever;
     this.passwordHasher = passwordHasher;
 }
示例#8
0
 public DbCreateUser(ICreateUserRepository createUserRepository)
 {
     this.createUserRepository = createUserRepository;
 }