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 FoodMenuManager(IFoodMenuDal foodMenuDal, IMapper mapper, IFoodMenuSubScreenDal foodMenuSubScreenDal, IHttpContextAccessor httpContextAccessor)
 {
     this.httpContextAccessor  = httpContextAccessor;
     this.foodMenuSubScreenDal = foodMenuSubScreenDal;
     this.mapper      = mapper;
     this.foodMenuDal = foodMenuDal;
 }
Ejemplo n.º 3
0
 public FoodMenuPhotoManager(IFoodMenuPhotoDal foodMenuPhotoDal,
                             IMapper mapper, IUploadFile upload,
                             IFoodMenuDal foodMenuDal)
 {
     this.foodMenuDal      = foodMenuDal;
     this.upload           = upload;
     this.mapper           = mapper;
     this.foodMenuPhotoDal = foodMenuPhotoDal;
 }
Ejemplo n.º 4
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;
 }
Ejemplo n.º 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;
 }