GetNorthwindContext() public static method

public static GetNorthwindContext ( ) : NorthwindContext
return NorthwindContext
Ejemplo n.º 1
0
 public ShipperRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 2
0
 public ProductRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 3
0
 public CustomerRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 4
0
 public BlogEntryRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 5
0
 public CategoryRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 6
0
 public BlogResponseRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Ejemplo n.º 7
0
 public SupplierRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }