Skip to content

Instantly share code, notes, and snippets.

@aconfee
Created September 5, 2017 15:36
Show Gist options
  • Select an option

  • Save aconfee/52907c5d075c5eb38c43a7d30874bddb to your computer and use it in GitHub Desktop.

Select an option

Save aconfee/52907c5d075c5eb38c43a7d30874bddb to your computer and use it in GitHub Desktop.

Revisions

  1. aconfee created this gist Sep 5, 2017.
    14 changes: 14 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    if (profile.RetailPriceEstimate.UseProvisionSetting.HasValue &&
    profile.RetailPriceEstimate.UseProvisionSetting.Value)
    {
    profile.RetailPriceEstimate.SelectedBook = PriceGuideId.RADAR;
    }

    if (profile.WholesalePriceEstimate.UseProvisionSetting.HasValue &&
    profile.WholesalePriceEstimate.UseProvisionSetting.Value)
    {
    profile.WholesalePriceEstimate.SelectedBook = PriceGuideId.RADAR;
    }

    var financials = GetData(await _getFinancialsCommandHandler...........
    .....