Example #1
0
 public object Register(CourseStudent info)
 {
     try
     {
         var dobj = new CourseStudentDomainObject();
         return(dobj.Register(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public object Modify(CourseStudent info)
 {
     try
     {
         var dobj = new CourseStudentDomainObject();
         return(dobj.Modify(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #3
0
        public object Get()
        {
            try
            {
                var dobj = new CourseStudentDomainObject();
                var odbs = dobj.Get();

                return(odbs);
            }
            catch (Exception)
            {
                throw;
            }
        }