Exemple #1
0
        public async Task <IActionResult> GetProject(string projectId)
        {
            Project result = await _projectBll.GetAsync(projectId);

            return(new JsonResult(new { success = true, data = result }));
        }