コード例 #1
0
        public override YellowstonePathology.Business.Billing.Model.CptCode GetCptCode(CptCodeLevelEnum cptCodeLevel, bool isTechnicalOnly)
        {
            YellowstonePathology.Business.Billing.Model.CptCode result = null;
            switch (cptCodeLevel)
            {
            case CptCodeLevelEnum.Initial:
                if (isTechnicalOnly == true)
                {
                    result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88342TC();
                }
                else
                {
                    result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88342();
                }
                break;

            case CptCodeLevelEnum.Subsequent:
                if (isTechnicalOnly == true)
                {
                    result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88343TC();
                }
                else
                {
                    result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88343();
                }
                break;
            }

            return(result);
        }
コード例 #2
0
        public override YellowstonePathology.Business.Billing.Model.CptCode GetCptCode(CptCodeLevelEnum cptCodeLevel, bool isTechnicalOnly)
        {
            YellowstonePathology.Business.Billing.Model.CptCode result = null;
            switch (cptCodeLevel)
            {
                case CptCodeLevelEnum.Initial:
                    if (isTechnicalOnly == true)
                    {
                        result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88342TC();
                    }
                    else
                    {
                        result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88342();
                    }
                    break;
                case CptCodeLevelEnum.Subsequent:
                    if (isTechnicalOnly == true)
                    {
                        result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88343TC();
                    }
                    else
                    {
                        result = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88343();
                    }
                    break;
            }

            return result;
        }