public VehicleAnnounceManager(IVehicleAnnounceDal vehicleAnnounceDal, IHttpContextAccessor httpContextAccessor,
                               IMapper mapper, IVehicleAnnounceSubScreenDal vehicleAnnounceSubScreenDal)
 {
     this.httpContextAccessor         = httpContextAccessor;
     this.vehicleAnnounceSubScreenDal = vehicleAnnounceSubScreenDal;
     this.mapper             = mapper;
     this.vehicleAnnounceDal = vehicleAnnounceDal;
 }
示例#2
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;
 }