public ActionResult Delete(ProjectSection projectSection)
        {
            var result = _projectSectionService.Delete(projectSection);

            if (result.Success)
            {
                return(Ok(result));
            }
            return(BadRequest(result));
        }