public OrganizationAssociatedPersonRatingsController(SafeSpaceContext context)
        {
            _context = context;

            _aurs  = new AppUserRatingService(context);
            _oaprs = new OrganizationAssociatedPersonRatingService(context);
        }
 public RiskDefinitionsController(SafeSpaceContext context)
 {
     _context = context;
 }
 public ReportItemDefinitionsController(SafeSpaceContext context)
 {
     _context = context;
 }
 public AppUserRatingService(SafeSpaceContext context)
 {
     _context = context;
 }
Example #5
0
 public AppUserContactsController(SafeSpaceContext context)
 {
     _context = context;
 }
        public AppUserRatingController(SafeSpaceContext context)
        {
            _context = context;

            _aurs = new AppUserRatingService(context);
        }
 public AppUserReportsController(SafeSpaceContext context)
 {
     _context = context;
 }
Example #8
0
 public OrganizationsController(SafeSpaceContext context)
 {
     _context = context;
 }