Example #1
0
        public HomeController(
            IUsersServ userServ,
            IUserAuthenticationsServ userAuthenticationServ,

            IWebHostEnvironment he

            )
        {
            _usersService = userServ;
            _userAuthenticationsService = userAuthenticationServ;

            this.he = he;
        }
Example #2
0
        public UserAuthenticationsController(
            IUsersServ userServ,
            IUserAuthenticationsServ userAuthentication,
            IActorsServ actorServ,

            IGendersServ GenderServ,
            IWebHostEnvironment he

            )
        {
            _userServ           = userServ;
            _userAuthentication = userAuthentication;
            _actorServ          = actorServ;

            _GenderServ = GenderServ;
            this.he     = he;
        }