Beispiel #1
0
        //private readonly ICommonServ _commonServ;
        #endregion "Variables"

        #region "Constructor"
        public UserAuthenticationsServ
        (
            IUserAuthenticationsRepo <UserAuthentications> userAuthenticationsRepo,
            IActorsRepo <Actors> actorsRepo,
            IUsersRepo <Users> usersRepo
            //ICommonServ commonServ
        )
        {
            _userAuthenticationsRepo = userAuthenticationsRepo;
            _actorsRepo = actorsRepo;
            _usersRepo  = usersRepo;
            //_commonServ = commonServ;
        }
        public UsersServ(
            //GendersRepo<Genders> gendersRepo,
            IActorsRepo <Actors> oeActorsRepo,
            IUserAuthenticationsRepo <UserAuthentications> oeUserAuthenticationsRepo,
            IUsersRepo <Users> oeUsersRepo

            )
        {
            // _gendersRepo = gendersRepo;
            _oeUserAuthenticationsRepo = oeUserAuthenticationsRepo;
            _oeUsersRepo  = oeUsersRepo;
            _oeActorsRepo = oeActorsRepo;
        }