Beispiel #1
0
 public Course GetByID(int ID)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.GetByID(ID));
     }
     catch (Exception)
     {
         throw;
     }
 }