Esempio n. 1
0
 public RequestDetailsController(IRequestService requestService, IAttachService attachService, IDepartmentService departmentService, IGroupService groupService, IRoleService roleService)
 {
     _requestService    = requestService;
     _attachService     = attachService;
     _departmentService = departmentService;
     _groupService      = groupService;
     _roleService       = roleService;
 }
Esempio n. 2
0
 public ApiController(IMetasService metasService, ISiteService siteService, IContentsService contentsService, IUserService userService, IHostingEnvironment env, IAttachService attachService, IOptionService optionService)
 {
     _metasService    = metasService;
     _siteService     = siteService;
     _contentsService = contentsService;
     _userService     = userService;
     _env             = env;
     _attachService   = attachService;
     _optionService   = optionService;
 }
Esempio n. 3
0
        public AttachController(
            IHostingEnvironment environment,
            IAttachService attachService,
            ICallService callService
            )
        {
            this._environment   = environment;
            this._attachService = attachService;
            this._callService   = callService;

            this._baseSource = Path.Combine(this._environment.WebRootPath, "calls");
            if (!Directory.Exists(this._baseSource))
            {
                Directory.CreateDirectory(this._baseSource);
            }
        }
Esempio n. 4
0
 public RequestsController(IRequestService requestService, IAttachService attachService, IDepartmentService departmentService)
 {
     _requestService    = requestService;
     _attachService     = attachService;
     _departmentService = departmentService;
 }
Esempio n. 5
0
 public HomeController(IContentsService contentsService, ICommentsService commentsService, IAttachService attachService)
 {
     _contentsService = contentsService;
     _commentsService = commentsService;
     _attachService   = attachService;
 }
Esempio n. 6
0
 public MainViewModel(IWindowService windowService, IAttachService attachService)
 {
     this.windowService = windowService;
     this.attachService = attachService;
 }
Esempio n. 7
0
 public AttachController(IAttachService attachService)
 {
     _attachService = attachService;
 }