public ProfileAppService(
     IAppFolders appFolders,
     IBinaryObjectManager binaryObjectManager, 
     ITimeZoneService timezoneService)
 {
     _appFolders = appFolders;
     _binaryObjectManager = binaryObjectManager;
     _timeZoneService = timezoneService;
 }
 public ProfileController(
     UserManager userManager,
     IBinaryObjectManager binaryObjectManager,
     IAppFolders appFolders)
 {
     _userManager = userManager;
     _binaryObjectManager = binaryObjectManager;
     _appFolders = appFolders;
 }
 public TenantDemoDataBuilder(
     OrganizationUnitManager organizationUnitManager,
     UserManager userManager,
     RandomUserGenerator randomUserGenerator,
     IBinaryObjectManager binaryObjectManager, 
     IAppFolders appFolders)
 {
     _organizationUnitManager = organizationUnitManager;
     _userManager = userManager;
     _randomUserGenerator = randomUserGenerator;
     _binaryObjectManager = binaryObjectManager;
     _appFolders = appFolders;
 }
示例#4
0
 public ProfileController(IAppFolders appFolders)
     : base(appFolders)
 {
 }
 public RemotingFileServer(IWebUrlService webUrlService, IAppFolders appFolders)
 {
     _webUrlService    = webUrlService;
     remotingUploadUrl = _webUrlService.GetRemotingFileUploadUrl();
     _appFolders       = appFolders;
 }
        private const int MaxProfilePictureSize = 5242880; //5MB

        protected ProfileControllerBase(IAppFolders appFolders)
        {
            _appFolders = appFolders;
        }
示例#7
0
 public ProfileController(IAppFolders appFolders, IBinaryObjectManager binaryObjectManager)
     : base(appFolders)
 {
     _binaryObjectManager = binaryObjectManager;
 }
示例#8
0
 public QuoteAppService(IAbpSession abpSession, IAppFolders appFolders, IRepository <QuoteStatus> qstatusrepository,
                        IRepository <QuoteDetails> quotedetailsrepository, IRepository <QuoteCategories> quotecatrepository,
                        IRepository <BrVehicle> vehiclerrepository, IRepository <RepairTypes> repairtyperepository, IRepository <QuoteMaster> quotemasterrepository, IRepository <Jobs> jobsrrepository
                        , IRepository <InsurerMaster> insurerrrepository, IRepository <BrokerMaster> brokerrrepository, IRepository <VehicleMake> makerepository,
                        IRepository <VehicleModels> modelepository, IRepository <PaintTypes> painttypesrepository, IRepository <QLocation> qlocationrepository
                        , IRepository <QAction> qactionrepository)
 {
     _quotedetailsrepository = quotedetailsrepository; _abpSession = abpSession; _appFolders = appFolders; _qstatusrepository = qstatusrepository; _quotecatrepository = quotecatrepository;
     _repairtyperepository   = repairtyperepository; _quotemasterrepository = quotemasterrepository; _jobsrrepository = jobsrrepository;
     _insurerrrepository     = insurerrrepository; _brokerrrepository = brokerrrepository; _makerepository = makerepository;
     _modelepository         = modelepository; _vehiclerrepository = vehiclerrepository; _painttypesrepository = painttypesrepository;
     _qactionrepository      = qactionrepository; _qlocationrepository = qlocationrepository;
 }
示例#9
0
 public ProfileControllerBase(IAppFolders appFolders, IHostingEnvironment hostingEnvironment)
 {
     _appFolders         = appFolders;
     _hostingEnvironment = hostingEnvironment;
 }
示例#10
0
 public ImportController(IAppFolders appFolders,
                         IGlobalCache globalCache)
 {
     _appFolders  = appFolders;
     _globalCache = globalCache;
 }
示例#11
0
 public ImageAppService(IRepository <Image> imageRepository, IAppFolders appFolders, IBinaryObjectManager binaryObjectManager)
 {
     _appFolders          = appFolders;
     _binaryObjectManager = binaryObjectManager;
     _imageRepository     = imageRepository;
 }
示例#12
0
 public ProfileAppService(
     IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#13
0
 public PdfController(IAppFolders appFolders, stemDbContext stemDbContext, IHostingEnvironment hostingEnvironment)
     : base(appFolders, stemDbContext, hostingEnvironment)
 {
 }
示例#14
0
 public PdfControllerBase(IAppFolders appFolders, stemDbContext stemDbContext, IHostingEnvironment hostingEnvironment)
 {
     _hostingEnvironment = hostingEnvironment;
     _appFolders         = appFolders;
     _stemDbContext      = stemDbContext;
 }
示例#15
0
        //private const int MaxFileSize = 5242880; //5MB

        public ImportController(IAppFolders appFolders)
        {
            _appFolders = appFolders;
        }
示例#16
0
 public ProfileController(IAppFolders appFolders, IHostingEnvironment hostingEnvironment)
     : base(appFolders, hostingEnvironment)
 {
 }
示例#17
0
 public CustomerMediaVideoAppService(IRepository <CustomerMediaVideo, int> repository, ICustomerMediaVideoListExcelExporter rewardListExcelExporter, IUserMpAppService userMpAppService, IAppFolders appFolders, IWxMediaAppService wxMediaAppService, IRepository <CustomerServiceResponseText, int> cusRepository) : base(repository)
 {
     _rewardListExcelExporter = rewardListExcelExporter;
     _userMpAppService        = userMpAppService;
     _wxMediaAppService       = wxMediaAppService;
     _cusRepository           = cusRepository;
 }
示例#18
0
 public WuyeApiAppSrvice(WuyeApi wuyeApi, IRepository<Member, long> memberRepository, IAppFolders appFolders)
 {
     _wuyeApi = wuyeApi;
     _memberRepository = memberRepository;
     _appFolders = appFolders;
 }
示例#19
0
 public BannerManagerController(IBannerAppService_ bannerAppService, IAppFolders appFolders)
 {
     _bannerAppService = bannerAppService;
     _appFolders       = appFolders;
 }
 public FloorController(IFloorService floorService, IAppFolders appFolders)
 {
     this.floorService = floorService;
     this.excel        = new Excel();
     this.appFolders   = appFolders;
 }
示例#21
0
 public FileController(IAppFolders appFolders,
                       WeiXinApi weiXinApi)
 {
     _appFolders = appFolders;
     _weiXinApi  = weiXinApi;
 }
示例#22
0
 public ThietBiVatTuService(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#23
0
 public NhaCungUngService(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
 public ChiTietBanKiemKeAppService(IAppFolders appFolders)
 {
     ctappFolders = appFolders;
 }
示例#25
0
 public WebLogAppService(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
 public WebLogAppService(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#27
0
 public WebLogAppService(IAppFolders appFolders, ITempFileCacheManager tempFileCacheManager)
 {
     _appFolders           = appFolders;
     _tempFileCacheManager = tempFileCacheManager;
 }
 /// <summary>
 /// 初始化取证记录服务实例
 /// </summary>
 public ForensicsRecordAppService(IRepository <ForensicsRecord, long> forensicsRecordRepository, ForensicsRecordManager forensicsRecordManager, IAppFolders appFolders)
 {
     _forensicsRecordRepository = forensicsRecordRepository;
     _forensicsRecordManager    = forensicsRecordManager;
     _appFolders = appFolders;
 }
示例#29
0
 public EmailController(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#30
0
 public FileController(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#31
0
 public DownloadController(IAppFolders appFolders)
     : base(appFolders)
 {
 }
示例#32
0
 public MpMediaArticleAppService(IRepository <MpMediaArticle, int> repository, IMpMediaArticleListExcelExporter MpMediaArticleListExcelExporter, IUserMpAppService userMpAppService, IRepository <MpAccount, int> accountRepository, IAppFolders appFolders, IAccessTokenContainer accessTokenContainer, IRepository <MpFan, int> mpFanRepository, IWxMediaAppService wxMediaAppService, IRepository <MpMediaImage, int> imageRepository,
                                 IRepository <MpArticleInsideImage, int> mpArticleInsideImageRepository) : base(repository)
 {
     _MpMediaArticleListExcelExporter = MpMediaArticleListExcelExporter;
     _userMpAppService               = userMpAppService;
     _accountRepository              = accountRepository;
     _appFolders                     = appFolders;
     _accessTokenContainer           = accessTokenContainer;
     _mpFanRepository                = mpFanRepository;
     _wxMediaAppService              = wxMediaAppService;
     _imageRepository                = imageRepository;
     _mpArticleInsideImageRepository = mpArticleInsideImageRepository;
 }
示例#33
0
 public PCPTBVTService(IAppFolders appFolders, IAbpSession abpSession)
 {
     _abpSession = abpSession;
     _appFolders = appFolders;
 }
示例#34
0
 public FileController(IAppFolders appFolders)
 {
     _appFolders = appFolders;
 }
示例#35
0
 public FtpFileServer(IAppFolders appFolders, IWebUrlService webUrlService, IFtpUploadService ftpUploadService)
 {
     _appFolders       = appFolders;
     _webUrlService    = webUrlService;
     _ftpUploadService = ftpUploadService;
 }