Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductUserMappingRepository"/> class.
 /// </summary>
 /// <param name="dataContext">Data context injected object.</param>
 public ProductUserMappingRepository(PROTOXDataContext dataContext)
     : base(dataContext)
 {
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserInformationRepository"/> class.
 /// </summary>
 /// <param name="dataContext">Data Context Injected Object.</param>
 public UserInformationRepository(PROTOXDataContext dataContext)
     : base(dataContext)
 {
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CategoryRepository"/> class.
 /// </summary>
 /// <param name="dataContext">ProtoX Data Context.</param>
 public CategoryRepository(PROTOXDataContext dataContext)
     : base(dataContext)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductCategoryMappingRepository"/> class.
 /// </summary>
 /// <param name="dataContext">Data Context.</param>
 public ProductCategoryMappingRepository(PROTOXDataContext dataContext)
     : base(dataContext)
 {
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductRepository"/> class.
 /// </summary>
 /// <param name="dataContext">Data context injected object.</param>
 public ProductRepository(PROTOXDataContext dataContext)
     : base(dataContext)
 {
 }