コード例 #1
0
 public void DeleteProject(Project project)
 {
     _context.RemoveRange(project.UserStories);
     _context.Remove(project);
 }