public bool Delete()
 {
     objRegTypeDAL = new Registration_Type_DAL(objRegTypeProperty);
     return(objRegTypeDAL.Delete());
 }
 public bool Insert()
 {
     objRegTypeDAL = new Registration_Type_DAL(objRegTypeProperty);
     return(objRegTypeDAL.Insert());
 }
 public bool Update_Status()
 {
     objRegTypeDAL = new Registration_Type_DAL(objRegTypeProperty);
     return(objRegTypeDAL.UpdateStatus());
 }
 public DataTable SelectOne()
 {
     objRegTypeDAL = new Registration_Type_DAL(objRegTypeProperty);
     return(objRegTypeDAL.SelectOne());
 }