public async Task <IActionResult> Move(Guid statusId, Guid projectId, int index)
        {
            var id = User.Claims.Where(c => c.Type == "Id").Select(c => c.Value).SingleOrDefault();

            if (String.IsNullOrEmpty(id))
            {
                return(Unauthorized());
            }
            Guid actorId = new Guid(id);

            try
            {
                await _statusesService.Move(new GetByIdSpecification <Status>(statusId), index, new GetProjectParticipationByKeySpec(projectId, actorId));

                return(Ok());
            }
            catch (Exception e)
            {
                return(BadRequest(e.Message));
            }
        }