Beispiel #1
0
		public int InsertStuCardInfo(string getID,string getCardNumber,string getHolder,DateTime getDate,int getSeq)
		{
			using (OptionDataAccess optionDataAccess = new OptionDataAccess())
			{
				try
				{
					return optionDataAccess.InsertStuCardInfo(getID,getCardNumber,getHolder,getDate,getSeq);
				}
				catch(Exception e)
				{
					Util.WriteLog(e.Message,Util.EXCEPTION_LOG_TITLE);
					return 0;
				}
			}
		}