コード例 #1
0
        public async Task <IActionResult> DeleteExpert(string email, string projectId)
        {
            await _projectExpertsRepository.DeleteAsync(email, projectId);

            return(Json(new { Success = true, }));
        }