コード例 #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;
 }
コード例 #2
0
 public VehicleAnnounceManager(IVehicleAnnounceDal vehicleAnnounceDal, IHttpContextAccessor httpContextAccessor,
                               IMapper mapper, IVehicleAnnounceSubScreenDal vehicleAnnounceSubScreenDal)
 {
     this.httpContextAccessor         = httpContextAccessor;
     this.vehicleAnnounceSubScreenDal = vehicleAnnounceSubScreenDal;
     this.mapper             = mapper;
     this.vehicleAnnounceDal = vehicleAnnounceDal;
 }
コード例 #3
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;
 }
コード例 #4
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;
 }
コード例 #5
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;
 }