public async void Evaluate(Data.Profile profile) { var data = await this._Model.Calculate(profile); this.FinEvaluation = data.Content; }
public Task <Analystik.REST.IResponse <Data.FinancialEvaluation> > Calculate(Data.Profile profile) { return(this._api.Put <Data.FinancialEvaluation>($"calculate", profile)); }