Exemplo n.º 1
0
        public UnitOfWork(string connectionString)
        {
            var optionsBuilder = new DbContextOptionsBuilder <DeliveryDataBaseContext>();
            var options        = optionsBuilder.UseSqlServer(connectionString).Options;

            context = new DeliveryDataBaseContext(options);
        }
Exemplo n.º 2
0
 public ProductsRepository(DeliveryDataBaseContext context)
 {
     _db = context;
 }
Exemplo n.º 3
0
 public CustomersRepository(DeliveryDataBaseContext context)
 {
     _db = context;
 }