Пример #1
0
 /// <summary>
 /// By Code Fetcher.
 /// Uses the data access component to fetch a determined
 /// project from the database using the code of the
 /// current project.
 /// </summary>
 /// <returns>The fetched project.</returns>
 public ProjectBE getByCode()
 {
     ProjectDAC projectDAC = new ProjectDAC();
     return projectDAC.getProject(this.code);
 }