示例#1
0
        public SummaryViewModel(ISummaryClient summaryClient)
        {
            this.summaryClient = summaryClient;

            this.BaseTitle = "Summary Overview";

            this.Items = new ObservableCollection <ItemEstimateDTO>();

            this.LoadSummaryCommand = new RelayCommand(async _ => await this.ExecuteLoadSummaryCommand());
        }
示例#2
0
 public SummaryService()
 {
     _summaryClient = RestService.For <ISummaryClient>(Session.HostUrl);
 }