/// <summary>
 /// Ctor
 /// </summary>
 /// <param name="context">Object context</param>
 public CustomerActivityService(ShopObjectContext context)
 {
     this._context      = context;
     this._cacheManager = new ShopRequestCache();
 }
示例#2
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="context">Object context</param>
 public LogService(ShopObjectContext context)
 {
     this._context      = context;
     this._cacheManager = new ShopRequestCache();
 }
 public AddressRepository(ShopObjectContext context)
 {
     this._context = context;
 }
 public CustomerRepository(ShopObjectContext context)
 {
     this._context = context;
 }
示例#5
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="context">Object context</param>
 public SettingManager(ShopObjectContext context)
 {
     this._context      = context;
     this._cacheManager = new ShopStaticCache();
 }
 public CategoryRepository(ShopObjectContext context)
 {
     this._context = context;
 }
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="context">Object context</param>
 public StateProvinceService(ShopObjectContext context)
 {
     this._context      = context;
     this._cacheManager = new ShopRequestCache();
 }