public BaseRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
示例#2
0
 public AccountRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
 public GenderRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public BaseRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#5
0
 public ColorRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#6
0
 public TypeProductRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#7
0
 public ProductVMRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
 public OrderDetailRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public TypeSizeRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public AccountController(ClothetsStoreContext context, AccountService accountService)
 {
     this.context        = context;
     this.accountService = accountService;
 }
 public TypeSizeRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
 public ExtendedProductRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public ExtendedProductRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#14
0
 public AccountRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
示例#15
0
 public ProductVMRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public OrderDetailRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#17
0
 public CustomerRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public AccountService(ClothetsStoreContext context, IOptions <AppSettings> appSettings)
 {
     this.context     = context;
     this.appSettings = appSettings.Value;
 }
示例#19
0
 public StatisticsRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }
示例#20
0
 public ColorRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
示例#21
0
 public StatisticsRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
示例#22
0
 public TypeProductRepository(ClothetsStoreContext ctx)
 {
     this.ctx = ctx;
 }
 public GenderRepository()
 {
     this.ctx = new ClothetsStoreContext();
 }