public async Task <HttpResponseMessage> DeclineTaskReservation(ReservationPostModel model)
        {
            var response = await agentService
                           .DeclineTaskReservation(UserIdentityID, model.TaskSID, model.ReservationSID);

            return(SendHttpResponse(response));
        }