示例#1
0
 public async Task <ActionResult <ProjectCreated> > CreateProject(
     [FromBody] NewProject newProjectData,
     [FromServices] IProjectManagementService projectManagementService
     )
 {
     return(await ExecuteServiceAsync(() => projectManagementService.CreateProject(_userIdentifier, newProjectData)));
 }