public ManageCouponAdMonthController(IUnitOfWork _unitofwork)
     : base(_unitofwork)
 {
     _coupon  = new CouponService(_unitofwork);
     _common  = new CommonService(_unitofwork);
     _admonth = new AdMonthService(_unitofwork);
 }
Exemple #2
0
 public ManageStoreController(IUnitOfWork _unitofwork)
     : base(_unitofwork)
 {
     _store         = new StoreService(_unitofwork);
     _common        = new CommonService(_unitofwork);
     _storeAdChoice = new StoreAdChoiceService(_unitofwork);
     _history       = new StoreAdChoiceHistoryService(_unitofwork);
     _admonth       = new AdMonthService(_unitofwork);
 }
Exemple #3
0
 public StoreController(IUnitOfWork _unitofwork)
     : base(_unitofwork)
 {
     _store         = new StoreService(_unitofwork);
     _admonth       = new AdMonthService(_unitofwork);
     _storeadchoice = new StoreAdChoiceService(_unitofwork);
     _common        = new CommonService(_unitofwork);
     _storeAdOption = new StoreOptionService(_unitofwork);
     _document      = new DocumentService(_unitofwork);
     _adoption      = new AdOptionService(_unitofwork);
 }
 public ManageAdMonthController(IUnitOfWork _unitofwork)
     : base(_unitofwork)
 {
     _AdMonth = new AdMonthService(_unitofwork);
     _Common  = new CommonService(_unitofwork);
 }