public RecManagerViewModel() { model = new RecManagerModel(); service = new RecManagerService(model); PopulateListData(); ListViewSizeChangedCommand = new ListViewSizeChanged(); ProcessStartCommand = new StartSystemProcess(); DeleteRecordingCommand = new DeleteRecording(this); RefreshCommand = new RefreshList(this); }
public RecManagerService(RecManagerModel model) { this.model = model; }