public async Task <IActionResult> AddNewUserProject([FromBody] UserProjectPostDto userProjectPostDto)
        {
            var userProjectResp = await userProjectService.AddAsync(userProjectPostDto);

            return(CreatedAtAction("GetClient", new { userId = userProjectResp.UserID, projectId = userProjectResp.ProjectID }, mapper.Map <UserProjectResponseDto>(userProjectResp)));
        }