コード例 #1
0
ファイル: OptionSystem.cs プロジェクト: zesus19/c4.v2.T
		public void WriteStuCardInfoXLS(string getPath)
		{
			using ( OptionDataAccess optionDataAccess = new OptionDataAccess() )
			{
				try
				{
					optionRules.WriteStuCardInfoXLS(optionDataAccess.GetStuInfo(),getPath);
				}
				catch(Exception e)
				{
					Util.WriteLog(e.Message,Util.EXCEPTION_LOG_TITLE);
				}
			}
		}