Exemplo n.º 1
0
 public ScreenHeaderPhotoManager(IScreenHeaderPhotoDal screenHeaderPhotoDal, IMapper mapper, IUploadFile upload, IScreenDal screenDal)
 {
     this.screenDal            = screenDal;
     this.upload               = upload;
     this.mapper               = mapper;
     this.screenHeaderPhotoDal = screenHeaderPhotoDal;
 }
Exemplo n.º 2
0
 public FoodMenuSubScreenManager(IFoodMenuSubScreenDal foodMenuSubScreenDal, IMapper mapper,
                                 IFoodMenuDal foodMenuDal, IScreenDal screenDal, ISubSCreenDal subSCreenDal)
 {
     this.foodMenuDal          = foodMenuDal;
     this.subSCreenDal         = subSCreenDal;
     this.screenDal            = screenDal;
     this.mapper               = mapper;
     this.foodMenuSubScreenDal = foodMenuSubScreenDal;
 }
 public NewsSubScreenManager(INewsSubScreenDal newsSubScreenDal, INewsDal newsDal, IScreenDal screenDal, ISubSCreenDal subSCreenDal,
                             IMapper mapper)
 {
     this.subSCreenDal     = subSCreenDal;
     this.screenDal        = screenDal;
     this.newsDal          = newsDal;
     this.mapper           = mapper;
     this.newsSubScreenDal = newsSubScreenDal;
 }
Exemplo n.º 4
0
 public VehicleAnnouncesubScreenManager(IVehicleAnnounceSubScreenDal vehicleAnnounceSubScreenDal,
                                        IMapper mapper, IScreenDal screenDal,
                                        ISubSCreenDal subSCreenDal, IVehicleAnnounceDal vehicleAnnounceDal)
 {
     this.screenDal                   = screenDal;
     this.vehicleAnnounceDal          = vehicleAnnounceDal;
     this.subSCreenDal                = subSCreenDal;
     this.mapper                      = mapper;
     this.vehicleAnnounceSubScreenDal = vehicleAnnounceSubScreenDal;
 }
 public AnnounceSubScreenManager(IAnnounceSubScreenDal announceSubScreenDal,
                                 IScreenDal screenDal, ISubSCreenDal subSCreenDal,
                                 IMapper mapper, IAnnounceDal announceDal)
 {
     this.subSCreenDal         = subSCreenDal;
     this.screenDal            = screenDal;
     this.announceDal          = announceDal;
     this.mapper               = mapper;
     this.announceSubScreenDal = announceSubScreenDal;
 }
Exemplo n.º 6
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;
 }
Exemplo n.º 7
0
        public HomeAnnouncesubScreenManager(IHomeAnnounceSubScreenDal homeAnnounceSubScreenDal,
                                            IMapper mapper,
                                            IHomeAnnounceDal homeAnnounceDal, IScreenDal screenDal, ISubSCreenDal subSCreenDal

                                            )
        {
            this.homeAnnounceDal          = homeAnnounceDal;
            this.screenDal                = screenDal;
            this.subSCreenDal             = subSCreenDal;
            this.mapper                   = mapper;
            this.homeAnnounceSubScreenDal = homeAnnounceSubScreenDal;
        }
Exemplo n.º 8
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;
 }
Exemplo n.º 9
0
 public ScreenManager(IScreenDal screenDal, ISubSCreenDal subSCreenDal, IMapper mapper)
 {
     this.subSCreenDal = subSCreenDal;
     this.mapper       = mapper;
     this.screenDal    = screenDal;
 }
Exemplo n.º 10
0
 public OnlineScreenManager(IOnlineScreenDal onlineScreenDal, IMapper mapper, IScreenDal screenDal)
 {
     this.screenDal       = screenDal;
     this.onlineScreenDal = onlineScreenDal;
     this.mapper          = mapper;
 }