Ejemplo n.º 1
0
 public MemberController(IUserProfileService userProfileService, IVUserProfileService vUserProfileService, IDirectionService directionService, IMapper mapper)
 {
     _userProfileService  = userProfileService ?? throw new ArgumentNullException(nameof(userProfileService));
     _vUserProfileService = vUserProfileService ?? throw new ArgumentNullException(nameof(vUserProfileService));
     _directionService    = directionService ?? throw new ArgumentNullException(nameof(directionService));
     _mapper = mapper;
 }
Ejemplo n.º 2
0
 public UserProfileController(IUserProfileService userProfileService,
                              IVUserProfileService vUserProfileService,
                              IDirectionService directionService)
 {
     _userProfileService  = userProfileService;
     _vUserProfileService = vUserProfileService;
     _directionService    = directionService;
 }
Ejemplo n.º 3
0
 public TaskTrackController(ITaskTrackService taskTrackService, IVUserTrackService vUerTrackService, IVUserProfileService vUserProfileService, IVUserTaskService vUserTaskService, IUserTaskService userTaskService)
 {
     _taskTrackService    = taskTrackService;
     _vUserTrackService   = vUerTrackService;
     _vUserProfileService = vUserProfileService;
     _vUserTaskService    = vUserTaskService;
     _userTaskTService    = userTaskService;
 }
 public UserProfileController(IMapper mapper,
                              IUserProfileService userProfileService,
                              IVUserProfileService vUserProfileService,
                              ILogger <UserProfileController> logger) : base(mapper, logger)
 {
     _userProfileService  = userProfileService;
     _vUserProfileService = vUserProfileService;
 }
Ejemplo n.º 5
0
        public TaskController(ITaskService taskService,
                              IVUserProfileService vUserProfileService,
                              IVUserTaskService vUserTaskService)

        {
            _taskService         = taskService;
            _vUserProfileService = vUserProfileService;
            _vUserTaskService    = vUserTaskService;
        }
Ejemplo n.º 6
0
 public AbstractController(ITaskService taskService, IVTaskService vTaskService, IUserTaskService userTaskService, IVUserProfileService vUserProfileService, IVTaskStateService vTaskStateService, IVUserTaskService vUserTaskService, IMapper mapper)
 {
     _taskService         = taskService;
     _vTaskService        = vTaskService;
     _userTaskService     = userTaskService;
     _vUserProfileService = vUserProfileService;
     _vTaskStateService   = vTaskStateService;
     _vUserTaskService    = vUserTaskService;
     _mapper = mapper;
 }
Ejemplo n.º 7
0
 public UserProfileController(IUserProfileService userProfileService,
                              IVUserProfileService vUserProfileService,
                              IDirectionService directionService,
                              IVUserProgressService vUserProgressService,
                              IMapper mapper)
 {
     _userProfileService   = userProfileService;
     _vUserProfileService  = vUserProfileService;
     _directionService     = directionService;
     _vUserProgressService = vUserProgressService;
     _mapper = mapper;
 }
Ejemplo n.º 8
0
 public ProfilesController(IVUserProfileService vUserProfileService, IMapper mapper)
 {
     _vUserProfileService = vUserProfileService ?? throw new ArgumentNullException(nameof(vUserProfileService));
     _mapper = mapper;
 }
Ejemplo n.º 9
0
 public UserProgressController(IVUserProgressService userProgressService, IVUserProfileService userProfileService, IMapper mapper)
 {
     _userProgressService = userProgressService;
     _userProfileService  = userProfileService;
     _mapper = mapper;
 }
Ejemplo n.º 10
0
 public TasksManageController(ITaskService taskService, IVTaskService vTaskService, IUserTaskService userTaskService,
                              IVUserProfileService vUserProfileService, IVTaskStateService vTaskStateService, IVUserTaskService vUserTaskService, IMapper mapper)
     : base(taskService, vTaskService, userTaskService, vUserProfileService, vTaskStateService, vUserTaskService, mapper)
 {
 }
Ejemplo n.º 11
0
 public UserTaskController(IVUserTaskService service, IUserProfileService serviceU, IVUserProfileService vUserProfileService)
 {
     _service             = service;
     _serviceU            = serviceU;
     _vUserProfileService = vUserProfileService;
 }