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