public LiveTvBroadCastManager(ILiveTvBroadCastDal liveTvBrodcastDal, IMapper mapper, IHttpContextAccessor httpContextAccessor,
                               ILiveTvBroadCastSubScreenDal liveTvBroadCastSubScreenDal)
 {
     this.httpContextAccessor         = httpContextAccessor;
     this.liveTvBroadCastSubScreenDal = liveTvBroadCastSubScreenDal;
     this.mapper            = mapper;
     this.liveTvBrodcastDal = liveTvBrodcastDal;
 }
示例#2
0
 public LiveTvBroadCastSubScreenManager(ILiveTvBroadCastDal liveTvBroadCastDal,
                                        IMapper mapper, ISubSCreenDal subSCreenDal,
                                        IScreenDal screenDal,
                                        ILiveTvBroadCastSubScreenDal liveTvBroadCastSubScreenDal)
 {
     this.screenDal = screenDal;
     this.liveTvBroadCastSubScreenDal = liveTvBroadCastSubScreenDal;
     this.mapper             = mapper;
     this.subSCreenDal       = subSCreenDal;
     this.liveTvBroadCastDal = liveTvBroadCastDal;
 }
示例#3
0
 public KiosksManager(IMapper mapper, IScreenDal screenDal, ILiveTvBroadCastDal liveTvBroadCastDal,
                      INewsDal newsDal,
                      IFoodMenuDal foodMenuDal,
                      IHomeAnnounceDal homeAnnounceDal, IVehicleAnnounceDal vehicleAnnounceDal,
                      ISubSCreenDal subSCreenDal, IAnnounceDal announceDal)
 {
     this.vehicleAnnounceDal = vehicleAnnounceDal;
     this.homeAnnounceDal    = homeAnnounceDal;
     this.announceDal        = announceDal;
     this.subSCreenDal       = subSCreenDal;
     this.screenDal          = screenDal;
     this.liveTvBroadCastDal = liveTvBroadCastDal;
     this.mapper             = mapper;
     this.newsDal            = newsDal;
     this.foodMenuDal        = foodMenuDal;
 }