public EFCoreUnitOfWork(IConfigProvider config)
 {
     _config  = config ?? throw new ArgumentNullException(nameof(config));
     _context = new TpaContext(_config.GetConnectionString());
 }
Ejemplo n.º 2
0
 public UserDbAccess(TpaContext context)
 {
     _context = context;
 }
 public AppointmentDBAccess(TpaContext context)
 {
     _context = context;
 }