public BlogServices(IContentAdminRepository contentAdminRepository, IContentCategoryAdminRepository contentCategoryAdminRepository,
                     ISEORepository seoRepository, IBannerRepository bannerRepository)
 {
     _contentAdminRepository         = contentAdminRepository;
     _contentCategoryAdminRepository = contentCategoryAdminRepository;
     _seoRepository    = seoRepository;
     _bannerRepository = bannerRepository;
 }
示例#2
0
 public HomeServices(IMenuAdminRepository menuAdminRepository, ISlideAdminRepository slideAdminRepository, IProductCategoryAdminRepository productCategoryAdminRepository, IServiceCategoryAdminRepository serviceCategoryAdminRepository, IContentCategoryAdminRepository contentCategoryAdminRepository, IBookingRepository bookingRepository, IRoomRepository roomRepository,
                     IBedRepository bedRepository, IServiceAdminRepository serviceAdminRepository, IFooterAdminRepository footerAdminRepository, IFooterCategoryAdminRepository footerCategoryAdminRepository, IAboutAdminRepository aboutAdminRepository)
 {
     _menuAdminRepository            = menuAdminRepository;
     _slideAdminRepository           = slideAdminRepository;
     _productCategoryAdminRepository = productCategoryAdminRepository;
     _serviceCategoryAdminRepository = serviceCategoryAdminRepository;
     _contentCategoryAdminRepository = contentCategoryAdminRepository;
     _bookingRepository             = bookingRepository;
     _roomRepository                = roomRepository;
     _bedRepository                 = bedRepository;
     _serviceAdminRepository        = serviceAdminRepository;
     _footerCategoryAdminRepository = footerCategoryAdminRepository;
     _footerAdminRepository         = footerAdminRepository;
     _aboutAdminRepository          = aboutAdminRepository;
 }
示例#3
0
 public HomeServices(IMenuAdminRepository menuAdminRepository, ISlideAdminRepository slideAdminRepository, IProductCategoryAdminRepository productCategoryAdminRepository, IContentCategoryAdminRepository contentCategoryAdminRepository, IFooterAdminRepository footerAdminRepository, IFooterCategoryAdminRepository footerCategoryAdminRepository, IAboutAdminRepository aboutAdminRepository, IStaffAdminRepository staffAdminRepository
                     , ISEORepository seoRepository, IProductAdminRepository productAdminRepository, IContentAdminRepository contentAdminRepository, IBannerRepository bannerRepository,
                     IContactAdminRepository contactAdminRepository)
 {
     _menuAdminRepository            = menuAdminRepository;
     _slideAdminRepository           = slideAdminRepository;
     _productCategoryAdminRepository = productCategoryAdminRepository;
     _contentCategoryAdminRepository = contentCategoryAdminRepository;
     _staffAdminRepository           = staffAdminRepository;
     _footerCategoryAdminRepository  = footerCategoryAdminRepository;
     _footerAdminRepository          = footerAdminRepository;
     _aboutAdminRepository           = aboutAdminRepository;
     _seoRepository          = seoRepository;
     _productAdminRepository = productAdminRepository;
     _contentAdminRepository = contentAdminRepository;
     _bannerRepository       = bannerRepository;
     _contactAdminRepository = contactAdminRepository;
 }
示例#4
0
 public ContentCategoryAdminServices(IContentCategoryAdminRepository contentCategoryAdminRepository)
 {
     _contentCategoryAdminRepository = contentCategoryAdminRepository;
 }
示例#5
0
 public BlogServices(IContentAdminRepository contentAdminRepository, IContentCategoryAdminRepository contentCategoryAdminRepository)
 {
     _contentAdminRepository         = contentAdminRepository;
     _contentCategoryAdminRepository = contentCategoryAdminRepository;
 }