예제 #1
0
 /// <summary>
 /// Project Deletion.
 /// Deletes the current project from the database if it exists
 /// using the project data access component.
 /// </summary>
 public void delete()
 {
     ProjectDAC projectDAC = new ProjectDAC();
     projectDAC.delete(code);
 }