public BPerson(SIEContext context) { _context = context; _uPerson = new UPerson(_context); _uInstitution = new UInstitution(_context); _bInstitution = new BInstitution(_context); }
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; }
public InstitutionController(SIEContext context) { _uInstitution = new UInstitution(context); }