Beispiel #1
0
        public AppapiService(
            IRepository <SlideImage, long> slideimageRepository,

            IRepository <Notice, long> noticeRepository,
            IRepository <NoticeProject, long> noticeProjectRepository,
            IRepository <Activity, long> activityRepository,
            IRepository <ActivityPerson, long> activityPersonRepository,
            IRepository <ActivityProject, long> activityProjectRepository,
            IRepository <News, long> newsRepository,
            IRepository <NewsProject, long> newsProjectRepository,
            IRepository <CurrentRoom, long> currentRoomRepository,
            IWuyeApiAppSrvice wuyeApiAppSrvice,
            IRepository <Project, long> projectRepository
            )
        {
            _slideimageRepository = slideimageRepository;

            _slideimageRepository      = slideimageRepository;
            _noticeRepository          = noticeRepository;
            _noticeProjectRepository   = noticeProjectRepository;
            _activityRepository        = activityRepository;
            _activityPersonRepository  = activityPersonRepository;
            _activityProjectRepository = activityProjectRepository;
            _newsRepository            = newsRepository;
            _newsProjectRepository     = newsProjectRepository;
            _currentRoomRepository     = currentRoomRepository;

            _wuyeApiAppSrvice  = wuyeApiAppSrvice;
            _projectRepository = projectRepository;
        }
Beispiel #2
0
 public MaxwonController(IIocManager iocManager, IFrontpageAppSrvice frontpageAppSrvice, IWuyeApiAppSrvice wuyeApiAppSrvice, IFrontSession frontSession)
 {
     _iocManager         = iocManager;
     _frontpageAppSrvice = frontpageAppSrvice;
     _wuyeApiAppSrvice   = wuyeApiAppSrvice;
     _frontSession       = frontSession;
 }
Beispiel #3
0
        public RefundOrderService(IRepository <Groupon, long> grouponRepository,
                                  IRepository <Product, long> productRepository,
                                  IRepository <Category, long> categoryRepository,
                                  IRepository <ProductSlideImage, long> productSlideimageRepository,
                                  IRepository <MallSlideImage, long> mallslideimageRepository,
                                  IRepository <MemberAddress, long> memberAddressRepository,
                                  IRepository <Area, long> areaRepository,
                                  IWuyeApiAppSrvice wuyeApiAppSrvice,
                                  IRepository <Member, long> memberRepository,
                                  IRepository <RefundOrder, long> refundOrderRepository,
                                  IRepository <RefundOrderImage, long> refundOrderImageRepository,
                                  IRepository <Order, long> orderRepository,
                                  ISqlExecuter sqlExecuter,
                                  IAppFolders appFolders
                                  )
        {
            _grouponRepository           = grouponRepository;
            _productRepository           = productRepository;
            _categoryRepository          = categoryRepository;
            _productSlideimageRepository = productSlideimageRepository;
            _mallslideimageRepository    = mallslideimageRepository;
            _memberAddressRepository     = memberAddressRepository;
            _areaRepository   = areaRepository;
            _wuyeApiAppSrvice = wuyeApiAppSrvice;
            _memberRepository = memberRepository;

            _refundOrderRepository      = refundOrderRepository;
            _refundOrderImageRepository = refundOrderImageRepository;
            _orderRepository            = orderRepository;
            _sqlExecuter = sqlExecuter;

            _appFolders = appFolders;
        }
Beispiel #4
0
 public WeixinSession(IRepository <Project, long> projectRepository,
                      IRepository <Member, long> memberRepository,
                      IWuyeApiAppSrvice wuyeApiAppSrvice)
 {
     _projectRepository = projectRepository;
     _memberRepository  = memberRepository;
     _wuyeApiAppSrvice  = wuyeApiAppSrvice;
 }
Beispiel #5
0
 public ProjectAppService(IRepository <Project, long> projectRepository, IWuyeApiAppSrvice wuyeApiAppSrvice)
 {
     _projectRepository = projectRepository;
     _wuyeApiAppSrvice  = wuyeApiAppSrvice;
 }
Beispiel #6
0
 public PayNotifyAppService(IRepository <PayNotify, long> payNotifyRepository, IWuyeApiAppSrvice wuyeApiAppSrvice, IWeixinService weixinService)
 {
     _payNotifyRepository = payNotifyRepository;
     _wuyeApiAppSrvice    = wuyeApiAppSrvice;
     _weixinService       = weixinService;
 }
Beispiel #7
0
 public FrontSession(IRepository <Project, long> projectRepository, IWuyeApiAppSrvice wuyeApiAppSrvice)
 {
     _projectRepository = projectRepository;
     _wuyeApiAppSrvice  = wuyeApiAppSrvice;
 }