public OrganizationAssociatedPersonRatingsController(SafeSpaceContext context)
        {
            _context = context;

            _aurs  = new AppUserRatingService(context);
            _oaprs = new OrganizationAssociatedPersonRatingService(context);
        }
        public AppUserRatingController(SafeSpaceContext context)
        {
            _context = context;

            _aurs = new AppUserRatingService(context);
        }