public DataAnalyserViewModel(IAnalyserRepository repo)
        {
            this.repo = repo;

            this.PrepareDataForChartCommand = new GalaSoft.MvvmLight.Command.RelayCommand <string>(this.PrepareDataForChart);
            this.BackToRecentViewCommand    = new RelayCommand(this.BackToRecentView);

            this.DataForChart = new List <DataForChart>();
        }
 public WeightForAnalyseGetter(IAnalyserRepository repo)
 {
     this.repo = repo;
 }
Exemple #3
0
 public ArmForAnalyseGetter(IAnalyserRepository repo)
 {
     this.repo = repo;
 }