示例#1
0
 public AnnounceManager(IAnnounceDal announceDal, IHttpContextAccessor httpContextAccessor,
                        IMapper mapper, IAnnounceSubScreenDal announceSubScreenDal)
 {
     this.httpContextAccessor  = httpContextAccessor;
     this.announceSubScreenDal = announceSubScreenDal;
     this.mapper      = mapper;
     this.announceDal = announceDal;
 }
 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;
 }