Beispiel #1
0
 public object Delete(Course info)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.Delete(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #2
0
 public object Modify(Course info)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.Modify(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #3
0
 public object Get(string text)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.Get(text));
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #4
0
 public object Register(Course info)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.Register(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #5
0
 public Course GetByID(int ID)
 {
     try
     {
         var dobj = new CourseDomainObject();
         return(dobj.GetByID(ID));
     }
     catch (Exception)
     {
         throw;
     }
 }