/// <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) { }
/// <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) { }
/// <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) { }
/// <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) { }
/// <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) { }