コード例 #1
0
ファイル: ExchangeTypeManager.cs プロジェクト: cafc79/SIA
        public bool ExistExchangeType(String sDescription)
        {
            ExchangeType et = new ExchangeType();

            if (et.getCountExchangeTypeByDescription(sDescription) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }