Esempio n. 1
0
 public IndexService(ICounterService counterService, IMonthlySubscriptionService monthlySubscriptionService,
                     IVipTicketService vipTicketService, ICommentService commentService, IFreeTipsService freeTipsService, IHtmlService htmlService)
 {
     _counterService             = counterService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _vipTicketService           = vipTicketService;
     _commentService             = commentService;
     _freeTipsService            = freeTipsService;
     _htmlService = htmlService;
 }
Esempio n. 2
0
 public AdminController(IControllerActionService controllerActionService, IHtmlService htmlService,
                        ICommentService commentService, ISeoService seoService, IMonthlySubscriptionService monthlySubscriptionService, IFreeTipsService freeTipsService, IVipTicketService vipTicketService)
 {
     _controllerActionService = controllerActionService;
     _htmlService             = htmlService;
     _commentService          = commentService;
     _seoService = seoService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _freeTipsService            = freeTipsService;
     _vipTicketService           = vipTicketService;
 }
Esempio n. 3
0
 public HomeController(IIndexService indexService, IVipTicketService vipTicketService,
                       IMonthlySubscriptionService monthlySubscriptionService, IFreeTipsService freeTipsService,
                       IHtmlService htmlService, IControllerActionService controllerActionService)
 {
     _indexService               = indexService;
     _vipTicketService           = vipTicketService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _freeTipsService            = freeTipsService;
     _htmlService             = htmlService;
     _controllerActionService = controllerActionService;
 }
Esempio n. 4
0
 public VendorController(IUserService UserService, IRoleService RoleService, IUserRoleService UserRoleService, IFormService FormService, IRoleDetailService RoleDetailService, ICompanyService CompanyService, ICustomerProductService CustomerProductService,
                         ICityService CityService, ICountryService CountryService, IStateService StateService, ICustomerServices CustomerService, ICompanyLocationService CompanyLocationService, IMonthlySubscriptionService MonthlySubscriptionService, IVIPsetupService VIPsetupService)
     : base(UserService, RoleService, FormService, RoleDetailService, UserRoleService, VIPsetupService)
 {
     this._CompanyService = CompanyService;
     this._CityService    = CityService;
     this._CountryService = CountryService;
     this._StateService   = StateService;
     //this._ClientService = ClientService;
     this._UserRoleService            = UserRoleService;
     this._CustomerService            = CustomerService;
     this._UserService                = UserService;
     this._CustomerProductService     = CustomerProductService;
     this._CompanyLocationService     = CompanyLocationService;
     this._MonthlySubscriptionService = MonthlySubscriptionService;
 }