GetNorthwindContext() public static méthode

public static GetNorthwindContext ( ) : NorthwindContext
Résultat NorthwindContext
 public ShipperRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Exemple #2
0
 public ProductRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
 public CustomerRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
 public BlogEntryRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
 public CategoryRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Exemple #6
0
 public BlogResponseRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }
Exemple #7
0
 public SupplierRepository()
 {
     _context = NorthwindContext.GetNorthwindContext();
 }