Example #1
0
 public TaskController(ITaskService taskService,
                       IvUserProfileService vUserProfileService,
                       IvUserTaskService vUserTaskService,
                       IMapper mapper)
 {
     _taskService         = taskService;
     _vUserProfileService = vUserProfileService;
     _vUserTaskService    = vUserTaskService;
     _mapper = mapper;
 }
Example #2
0
		public UserProfileController(
			IUserProfileService userProfileService,
			IvUserProfileService vUserProfileService,
			IDirectionService directionService,
			IMapper mapper)
		{
			_userProfileService = userProfileService;
			_vUserProfileService = vUserProfileService;
			_directionService = directionService;
			_mapper = mapper;
		}
Example #3
0
 public MemberController(IUserProfileService userProfileService,
                         IvUserProfileService vUserProfileService,
                         IDirectionService directionService)
 {
     _userProfileService = userProfileService
                           ?? throw new ArgumentNullException(nameof(userProfileService));
     _vUserProfileService = vUserProfileService
                            ?? throw new ArgumentNullException(nameof(vUserProfileService));
     _directionService = directionService
                         ?? throw new ArgumentNullException(nameof(directionService));
 }
Example #4
0
 public TasksController(
     ITaskService taskService,
     IvUserProfileService vUserProfileService,
     IvUserTaskService vUserTaskService)
 {
     _taskService = taskService
                    ?? throw new ArgumentNullException(nameof(taskService));
     _vUserProfileService = vUserProfileService
                            ?? throw new ArgumentNullException(nameof(vUserProfileService));
     _vUserTaskService = vUserTaskService
                         ?? throw new ArgumentNullException(nameof(vUserTaskService));
 }
Example #5
0
 public ProfilesController(IvUserProfileService vUserProfileService, IMapper mapper)
 {
     _vUserProfileService = vUserProfileService
                            ?? throw new ArgumentNullException(nameof(vUserProfileService));
     _mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }