Ejemplo n.º 1
0
 public PublicManager(IMapper mapper,
                      INewsDal newsDal,
                      IFoodMenuDal foodMenuDal,
                      IHomeAnnounceDal homeAnnounceDal, IUserDal userDal, IUploadFile upload, IUserPhotoDal userPhotoDal,
                      IDegreeDal degreeDal, IUserService userService,
                      ICampusDal campusDal,
                      IDepartmentDal departmentDal,
                      IVehicleAnnounceDal vehicleAnnounceDal,
                      IHttpContextAccessor httpContextAccessor,
                      IAnnounceDal announceDal)
 {
     this.vehicleAnnounceDal  = vehicleAnnounceDal;
     this.httpContextAccessor = httpContextAccessor;
     this.homeAnnounceDal     = homeAnnounceDal;
     this.userDal             = userDal;
     this.upload        = upload;
     this.userPhotoDal  = userPhotoDal;
     this.degreeDal     = degreeDal;
     this.userService   = userService;
     this.campusDal     = campusDal;
     this.departmentDal = departmentDal;
     this.announceDal   = announceDal;
     this.mapper        = mapper;
     this.newsDal       = newsDal;
     this.foodMenuDal   = foodMenuDal;
 }
Ejemplo n.º 2
0
 public AnnounceManager(IAnnounceDal announceDal, IHttpContextAccessor httpContextAccessor,
                        IMapper mapper, IAnnounceSubScreenDal announceSubScreenDal)
 {
     this.httpContextAccessor  = httpContextAccessor;
     this.announceSubScreenDal = announceSubScreenDal;
     this.mapper      = mapper;
     this.announceDal = announceDal;
 }
Ejemplo n.º 3
0
 public AnnouncePhotoManager(IAnnouncePhotoDal announcePhotoDal,
                             IHttpContextAccessor httpContextAccessor,
                             IMapper mapper, IUploadFile upload, IAnnounceDal announceDal)
 {
     this.httpContextAccessor = httpContextAccessor;
     this.announceDal         = announceDal;
     this.upload           = upload;
     this.mapper           = mapper;
     this.announcePhotoDal = announcePhotoDal;
 }
 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;
 }
Ejemplo n.º 5
0
 public PublicUserAnnounceManager(IMapper mapper,
                                  IAnnounceDal announceDal, IHomeAnnounceDal homeAnnounceDal, IAnnouncePhotoDal announcePhotoDal,
                                  IUploadFile upload,
                                  IVehicleAnnounceDal vehicleAnnounceDal,
                                  IHttpContextAccessor httpContextAccessor,
                                  IUserDal userDal)
 {
     this.userDal             = userDal;
     this.httpContextAccessor = httpContextAccessor;
     this.mapper             = mapper;
     this.announceDal        = announceDal;
     this.homeAnnounceDal    = homeAnnounceDal;
     this.announcePhotoDal   = announcePhotoDal;
     this.upload             = upload;
     this.vehicleAnnounceDal = vehicleAnnounceDal;
 }
Ejemplo n.º 6
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;
 }