Esempio n. 1
0
        public override YellowstonePathology.Business.Billing.Model.CptCode GetGCode(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.GCodeDefinitions.CPTG0461();
                }
                else
                {
                    result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0461TC();
                }
                break;

            case CptCodeLevelEnum.Subsequent:
                if (isTechnicalOnly == true)
                {
                    result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0462();
                }
                else
                {
                    result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0462TC();
                }
                break;
            }
            return(result);
        }
 public override YellowstonePathology.Business.Billing.Model.CptCode GetGCode(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.GCodeDefinitions.CPTG0461();
             }
             else
             {
                 result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0461TC();
             }
             break;
         case CptCodeLevelEnum.Subsequent:
             if (isTechnicalOnly == true)
             {
                 result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0462();
             }
             else
             {
                 result = new YellowstonePathology.Business.Billing.Model.GCodeDefinitions.CPTG0462TC();
             }
             break;
     }
     return result;
 }