Example #1
0
 public BPerson(SIEContext context)
 {
     _context      = context;
     _uPerson      = new UPerson(_context);
     _uInstitution = new UInstitution(_context);
     _bInstitution = new BInstitution(_context);
 }
Example #2
0
        public PersonController(SIEContext context, IConfiguration configuration)
        {
            _bHistory          = new BHistory(context);
            _bPerson           = new BPerson(context);
            _bPasswordRecovery = new BPasswordRecovery(context, configuration);
            _bInstitution      = new BInstitution(context);
            _uPerson           = new UPerson(context);
            _uRecoveryPassword = new UPasswordRecovery(context);
            _uInstitution      = new UInstitution(context);

            _configuration = configuration;
        }
Example #3
0
 public InstitutionController(SIEContext context)
 {
     _uInstitution = new UInstitution(context);
 }