public ProjectSummaryDto(Project project)
 {
     this.Id = project.Id;
     this.Description = project.Description;
     this.ProjectHours = project.ProjectHours;
     this.RegisteredUserCount = project.Users.Count;
 }
 public ProjectDto(Project project)
 {
     this.Id = project.Id;
     this.Description = project.Description;
     this.ProjectHours = project.ProjectHours;
 }