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