public UsersController(
     IUsersServ oeUsersServ,
     IActorsServ oeActorsServ,
     //IInstitutionsServ oeInstitutionsServ,
     //IGendersServ comGendersServ,
     //ICommonServ commonServ,
     IWebHostEnvironment he
     )
 {
     _oeUsersServ = oeUsersServ;
     //_comGendersServ = comGendersServ;
     _oeActorsServ = oeActorsServ;
     //_oeInstitutionsServ = oeInstitutionsServ;
     //_commonServ = commonServ;
     this.he = he;
 }
Exemple #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;
        }