Example #1
0
 public void InsertStuParentInfo(Option option)
 {
     using (OptionDataAccess optionDataAccess = new OptionDataAccess())
     {
         try
         {
             optionDataAccess.InsertStuParentInfo(option);
         }
         catch (Exception e)
         {
             Util.WriteLog(e.Message, Util.EXCEPTION_LOG_TITLE);
         }
     }
 }