/// <summary>
 /// Initializes a new instance of the <see cref="ProductPhotoRepository"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public ProductPhotoRepository(IAdventureWorks2014Context context)
 {
     _context = context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CultureRepository"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public CultureRepository(IAdventureWorks2014Context context)
 {
     _context = context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductSubCategoryRepository"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public ProductSubCategoryRepository(IAdventureWorks2014Context context)
 {
     _context = context;
 }
Beispiel #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductDescriptionRepository"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public ProductDescriptionRepository(IAdventureWorks2014Context context)
 {
     _context = context;
 }