예제 #1
0
		public DataSet GetTeaBasicInfo(string getDept,string getDuty,string getName,string getNumber)
		{
			using (OptionDataAccess optionDataAccess = new OptionDataAccess())
			{
				try
				{
					return optionDataAccess.GetTeaBasicInfo(getDept,getDuty,getName,getNumber);
				}
				catch(Exception e)
				{
					Util.WriteLog(e.Message,Util.EXCEPTION_LOG_TITLE);
					return null;
				}
			}
		}