Exemplo n.º 1
0
 public DocumentAppService(
     IRepository <Document, long> repository,
     IFileAppService fileAppService)
     : base(repository)
 {
     _fileAppService = fileAppService;
 }
Exemplo n.º 2
0
 public ClientDemoService(
     IFileAppService fileAppService,
     IIdentityModelAuthenticationService authenticationService,
     IConfiguration configuration)
 {
     _sampleAppService      = fileAppService;
     _authenticationService = authenticationService;
     _configuration         = configuration;
 }
Exemplo n.º 3
0
 /// <summary>
 /// 构造注入
 /// </summary>
 /// <param name="fileAppService"></param>
 /// <param name="userInfoAppService"></param>
 /// <param name="appCommonAppService"></param>
 /// <param name="contentAppService"></param>
 public AppApiAppService(IFileAppService fileAppService,
                         IUserInfoAppService userInfoAppService,
                         IAppCommonAppService appCommonAppService,
                         IContentAppService contentAppService)
 {
     _fileAppService      = fileAppService;
     _userInfoAppService  = userInfoAppService;
     _appCommonAppService = appCommonAppService;
     _contentAppService   = contentAppService;
 }
Exemplo n.º 4
0
 public FileController(IFileFormatAppService FileFormatAppService,
                       IComputerAppService ComputerAppService,
                       IFolderAppService FolderAppService,
                       IFileAppService FileAppService,
                       IMonitFileAppService MonitFileAppService,
                       IFileUploadAppService FileUploadAppService,
                       IUserAppService UserAppService)
 {
     _FileFormatAppService = FileFormatAppService;
     _ComputerAppService   = ComputerAppService;
     _FolderAppService     = FolderAppService;
     _FileAppService       = FileAppService;
     _MonitFileAppService  = MonitFileAppService;
     _FileUploadAppService = FileUploadAppService;
     _UserAppService       = UserAppService;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="StudentController"/> class.
 /// </summary>
 /// <param name="studentService">The student service.</param>
 /// <param name="assignmentTaskAndSubmission">The assignment task and submission.</param>
 /// <param name="messageService">The message service.</param>
 /// <param name="courseModuleService">The course module service.</param>
 /// <param name="fileService">The file service.</param>
 /// <param name="basequestionTopicService">The basequestionTopic service.</param>
 public StudentController(
     IStudentAppService studentService,
     IUserAppService userAppService,
     IAssignmentTaskSubmissionAppService assignmentTaskAndSubmission,
     IMessageAppService messageService,
     ICourseModuleAppService courseModuleService,
     IFileAppService fileService,
     IUnitModuleAppService unitService,
     IScheduleAppService scheduleService,
     IBaseQuestionTopicAppService basequestionTopicService
     ) : base(userAppService)
 {
     this._studentService = studentService;
     this._userService    = userAppService;
     this._assignmentTaskAndSubmissionService = assignmentTaskAndSubmission;
     this._messageService                 = messageService;
     this._courseModuleService            = courseModuleService;
     this._fileService                    = fileService;
     this._unitModuleService              = unitService;
     this._scheduleService                = scheduleService;
     this._baseQuestionTopicModuleService = basequestionTopicService;
 }
Exemplo n.º 6
0
 public HomeController(ICategoryAppService categoryService, IProductAppService productAppService, IFileAppService fileAppService)
 {
     _categoryService = categoryService;
     _productService  = productAppService;
     _fileAppService  = fileAppService;
 }
Exemplo n.º 7
0
 public MoveModalModel(IFileAppService service)
 {
     _service = service;
 }
Exemplo n.º 8
0
 public SaveUploadFileHelper(IFileAppService fileAppService)
 {
     _fileAppService = fileAppService;
 }
Exemplo n.º 9
0
 public CreateModalModel(IEmpleadoAppService empleadoAppService, IFileAppService fileAppService)
 {
     _empleadoAppService = empleadoAppService;
     _fileAppService     = fileAppService;
 }
Exemplo n.º 10
0
 public FileController(IFileAppService service, IFileRepository repository, IFileManager fileManager)
 {
     _service     = service;
     _repository  = repository;
     _fileManager = fileManager;
 }
Exemplo n.º 11
0
 public FileController(IFileAppService fileAppService
                       , ILogger <FileController> logger)
 {
     _fileAppService = fileAppService;
     _logger         = logger;
 }
Exemplo n.º 12
0
 public FileController(IFileAppService service)
 {
     _service = service;
 }
Exemplo n.º 13
0
 public File(IFileAppService fileAppService)
 {
     _fileAppService = fileAppService;
 }
Exemplo n.º 14
0
 public ArticleAppService(IArticleRepository repository, IFileAppService fileService, IArticleCategoryRepository articleCategoryrepository) : base(repository)
 {
     _repository  = repository;
     _fileService = fileService;
     _articleCategoryrepository = articleCategoryrepository;
 }
Exemplo n.º 15
0
 public IndexModel(IFileAppService service)
 {
     _service = service;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FileController"/> class.
 /// </summary>
 /// <param name="fileService">The file service.</param>
 public FileController(IFileAppService fileService)
 {
     this._fileService = fileService;
 }
 public CreateDirectoryModalModel(IFileAppService service)
 {
     _service = service;
 }
Exemplo n.º 18
0
 public HomeController(IFileAppService fileAppService, IOrderAppService orderAppService)
 {
     _fileAppService  = fileAppService;
     _orderAppService = orderAppService;
 }
Exemplo n.º 19
0
 public FileController(IFileAppService fileAppService)
 {
     FileAppService = fileAppService;
 }
 public FilesController(IFileAppService fileAppService, IConfigService configService)
 {
     this._fileAppService = fileAppService;
     this._configService  = configService;
 }
Exemplo n.º 21
0
 public ImagesController(IFileAppService fileAppService)
 {
     _fileAppService = fileAppService;
 }
Exemplo n.º 22
0
 public BlogFilesController(IFileAppService fileAppService)
 {
     _fileAppService = fileAppService;
 }
Exemplo n.º 23
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="fileAppService"></param>
 /// <param name="orderInfoRepository"></param>
 public FileController(IFileAppService fileAppService, IRepository <OrderInfo, Guid> orderInfoRepository)
 {
     _fileAppService      = fileAppService;
     _orderInfoRepository = orderInfoRepository;
 }
Exemplo n.º 24
0
 public FileController(IHostingEnvironment hostingEnv, IFileAppService fileAppService)
 {
     this.hostingEnv      = hostingEnv;
     this._fileAppService = fileAppService;
 }
 public ReUploadModalModel(IFileAppService service)
 {
     _service = service;
 }
Exemplo n.º 26
0
 public FileAppServiceTests()
 {
     _fileAppService = GetRequiredService <IFileAppService>();
 }
Exemplo n.º 27
0
 public RenameModalModel(IFileAppService service)
 {
     _service = service;
 }