Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountRepository"/> class.
 /// </summary>
 /// <param name="context">The ShoppingIt db context.</param>
 /// <param name="mapper">The mapper.</param>
 public AccountRepository(ShoppingItContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LookupRepository"/> class.
 /// </summary>
 /// <param name="context">The ShoppingIt db context.</param>
 /// <param name="mapper">The mapper.</param>
 public LookupRepository(ShoppingItContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SalesRepository"/> class.
 /// </summary>
 /// <param name="context">The ShoppingIt dbcontext.</param>
 /// <param name="mapper">The IMapper.</param>
 public SalesRepository(ShoppingItContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CompanyRepository"/> class.
 /// </summary>
 /// <param name="context">The ShoppingIt db context.</param>
 /// <param name="mapper">The mapper.</param>
 public CompanyRepository(ShoppingItContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Esempio n. 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductRepository"/> class.
 /// </summary>
 /// <param name="context">The ShoppingIt db context.</param>
 /// <param name="mapper">The mapper.</param>
 public ProductRepository(ShoppingItContext context, IMapper mapper)
     : base(context, mapper)
 {
 }