Example #1
0
 public PayPalController(ICustomerRepository customerRepository,
     ICMSRepository cmsRepository,
     IObjectStore objectStore) : base(customerRepository,objectStore,cmsRepository) {
     
     _cmsRepository = cmsRepository;
     _objectStore = objectStore;
     _customerRepository = customerRepository;
     this.ThemeName = "Admin";
 }
Example #2
0
 public PayPalController(ICustomerRepository customerRepository,
                         ICMSRepository cmsRepository,
                         IObjectStore objectStore) : base(customerRepository, objectStore, cmsRepository)
 {
     _cmsRepository      = cmsRepository;
     _objectStore        = objectStore;
     _customerRepository = customerRepository;
     this.ThemeName      = "Admin";
 }
Example #3
0
 public ServiceArticle()
 {
     context = new EFCMSRepository();
 }
Example #4
0
		public ResourceService(ICMSRepository<ResourceEntity> resourceRepository,ILog log)
		{
			_resourceRepository = resourceRepository;
			_log = log;
		}
		public AdvertisementService(ICMSRepository<AdvertisementEntity> advertisementRepository,ILog log)
		{
			_advertisementRepository = advertisementRepository;
			_log = log;
		}
Example #6
0
 public SettingService(ICMSRepository <SettingEntity> settingRepository, ILog log)
 {
     _settingRepository = settingRepository;
     _log = log;
 }
Example #7
0
 public ChannelService(ICMSRepository <ChannelEntity> channelRepository, ILog log)
 {
     _channelRepository = channelRepository;
     _log = log;
 }
Example #8
0
 public ServiceAdmProfile()
 {
     context = new EFCMSRepository();
 }
Example #9
0
 public TagService(ICMSRepository <TagEntity> tagRepository, ILog log)
 {
     _tagRepository = tagRepository;
     _log           = log;
 }
Example #10
0
 public ContentService(ICMSRepository <ContentEntity> contentRepository, ILog log)
 {
     _contentRepository = contentRepository;
     _log = log;
 }
Example #11
0
 public PublishProductService(ICMSRepository <PublishProductEntity> publishproductRepository, ILog log)
 {
     _publishproductRepository = publishproductRepository;
     _log = log;
 }
Example #12
0
		public ChannelService(ICMSRepository<ChannelEntity> channelRepository,ILog log)
		{
			_channelRepository = channelRepository;
			_log = log;
		}
Example #13
0
		public ContentService(ICMSRepository<ContentEntity> contentRepository,ILog log)
		{
			_contentRepository = contentRepository;
			_log = log;
		}
Example #14
0
 public ServiceSchema()
 {
     context = new EFCMSRepository();
 }
		public PublishProductService(ICMSRepository<PublishProductEntity> publishproductRepository,ILog log)
		{
			_publishproductRepository = publishproductRepository;
			_log = log;
		}
Example #16
0
 public ServiceAdmMenu()
 {
     context = new EFCMSRepository();
 }
Example #17
0
 public ServicePost()
 {
     context = new EFCMSRepository();
 }
Example #18
0
 public CMSManager(ICMSRepository repo)
 {
     _repo = repo;
 }
 public ContentController(ICMSRepository cmsRepo, IWebHostEnvironment webHostEnv, IDataRepository dataRepository)
 {
     this._cmsRepo        = cmsRepo;
     this._webHostEnv     = webHostEnv;
     this._dataRepository = dataRepository;
 }
Example #20
0
 public CMSManager()
 {
     _repo = new CMSRepository();
 }
Example #21
0
 public AdvertisementService(ICMSRepository <AdvertisementEntity> advertisementRepository, ILog log)
 {
     _advertisementRepository = advertisementRepository;
     _log = log;
 }
Example #22
0
 public ServiceAdmUser()
 {
     context = new EFCMSRepository();
 }
Example #23
0
		public TagService(ICMSRepository<TagEntity> tagRepository,ILog log)
		{
			_tagRepository = tagRepository;
			_log = log;
		}
Example #24
0
		public SettingService(ICMSRepository<SettingEntity> settingRepository,ILog log)
		{
			_settingRepository = settingRepository;
			_log = log;
		}
 public FieldsController(ICMSRepository cmsRepo, IDataRepository dataRepo)
 {
     this._cmsRepo  = cmsRepo;
     this._dataRepo = dataRepo;
 }
Example #26
0
 public ResourceService(ICMSRepository <ResourceEntity> resourceRepository, ILog log)
 {
     _resourceRepository = resourceRepository;
     _log = log;
 }