Example #1
0
 public LocationRepository(Covid19DbContext context)
 {
     this.container = context.Locations;
 }
Example #2
0
 public UnitOfWork(Covid19DbContext context)
 {
     _context       = context;
     this.Locations = new LocationRepository(_context);
 }