Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Code Reviews

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Code Reviews C# WPF MVVM View & Get new record values

Just looking to hear some reviews on my current MVVM Implementation, If I am heading towards the right direction. :) Code BaseViewModel public class BaseViewModel : INotifyPropertyChanged { ...

1 answer  ·  posted 3y ago by gzi98‭  ·  last activity 3y ago by FoggyFinder‭

Question c# mvvm wpf
#3: Post edited by user avatar FoggyFinder‭ · 2021-02-02T10:56:42Z (about 3 years ago)
fix formatting, add wpf tag
C# WPF MVVM View & Get new record values
  • Just looking to hear some reviews on my current MVVM Implementation, If I am heading towards the right direction. :)
  • **Code**
  • **BaseViewModel**
  • public class BaseViewModel : INotifyPropertyChanged
  • {
  • public event PropertyChangedEventHandler PropertyChanged;
  • protected void OnPropertyChanged(string propertyName)
  • {
  • if (PropertyChanged != null)
  • {
  • PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  • }
  • }
  • }
  • **ViewModel**
  • public class Technical_BestBeforeDates_ViewModel : BaseViewModel
  • {
  • // Loading + Filtering Data
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • OnPropertyChanged(nameof(ProductCode));
  • UpdateDataFromDatabase();
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • OnPropertyChanged(nameof(ProductDescription));
  • UpdateDataFromDatabase();
  • }
  • }
  • public ObservableCollection<Technical_BestBeforeDates_Model> BestBeforeDates_Models { get; }
  • public void UpdateDataFromDatabase()
  • {
  • BestBeforeDates_Models.Clear();
  • var records = Technical_BestBeforeData.GetFilteredData(ProductCode, ProductDescription);
  • foreach (Technical_BestBeforeDates_Model model in records)
  • {
  • BestBeforeDates_Models.Add(model);
  • }
  • }
  • // Open New Window Command
  • public ICommand OpenCreateNewRecordCommand { get; set; }
  • public void OpenWindow()
  • {
  • Technical_BestBeforeDates_CreateNewView window = new Technical_BestBeforeDates_CreateNewView()
  • {
  • WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
  • DataContext = new Technical_BestBeforeDates_CreateNewViewModel()
  • };
  • window.ShowDialog();
  • }
  • // Constructor
  • public Technical_BestBeforeDates_ViewModel()
  • {
  • BestBeforeDates_Models = new ObservableCollection<Technical_BestBeforeDates_Model>();
  • UpdateDataFromDatabase();
  • OpenCreateNewRecordCommand = new RelayCommand(_ => OpenWindow());
  • }
  • }
  • **CreateNewViewModel**
  • public class Technical_BestBeforeDates_CreateNewViewModel : BaseViewModel
  • {
  • private Technical_BestBeforeDates_Model _NewModel_;
  • public Technical_BestBeforeDates_Model NewModel
  • {
  • get { return _NewModel_; }
  • set
  • {
  • _NewModel_ = value;
  • OnPropertyChanged(nameof(NewModel));
  • }
  • }
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = _ProductCode,
  • ProductDescription = this.ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductCode));
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = this.ProductCode,
  • ProductDescription = _ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductDescription));
  • }
  • }
  • public ICommand CreateNewRecordCommand { get; set; }
  • public void CreateNewRecord(object param)
  • {
  • var vm = param as Technical_BestBeforeDates_Model;
  • System.Windows.MessageBox.Show(vm.ProductCode);
  • }
  • public Technical_BestBeforeDates_CreateNewViewModel()
  • {
  • CreateNewRecordCommand = new RelayCommand(param => CreateNewRecord(param));
  • }
  • }
  • **RelayCommand**
  • public class RelayCommand : ICommand
  • {
  • private Action<object> execute;
  • private Predicate<object> canExecute;
  • private event EventHandler CanExecuteChangedInternal;
  • public RelayCommand(Action<object> execute)
  • : this(execute, DefaultCanExecute)
  • {
  • }
  • public RelayCommand(Action<object> execute, Predicate<object> canExecute)
  • {
  • if (execute == null)
  • {
  • throw new ArgumentNullException("execute");
  • }
  • if (canExecute == null)
  • {
  • throw new ArgumentNullException("canExecute");
  • }
  • this.execute = execute;
  • this.canExecute = canExecute;
  • }
  • public event EventHandler CanExecuteChanged
  • {
  • add
  • {
  • CommandManager.RequerySuggested += value;
  • this.CanExecuteChangedInternal += value;
  • }
  • remove
  • {
  • CommandManager.RequerySuggested -= value;
  • this.CanExecuteChangedInternal -= value;
  • }
  • }
  • public bool CanExecute(object parameter)
  • {
  • return this.canExecute != null && this.canExecute(parameter);
  • }
  • public void Execute(object parameter)
  • {
  • this.execute(parameter);
  • }
  • public void OnCanExecuteChanged()
  • {
  • EventHandler handler = this.CanExecuteChangedInternal;
  • if (handler != null)
  • {
  • handler.Invoke(this, EventArgs.Empty);
  • }
  • }
  • public void Destroy()
  • {
  • this.canExecute = _ => false;
  • this.execute = _ => { return; };
  • }
  • private static bool DefaultCanExecute(object parameter)
  • {
  • return true;
  • }
  • }
  • **Data Storage - Technical_BestBeforeData**
  • public static class Technical_BestBeforeData
  • {
  • private static List<Technical_BestBeforeDates_Model> GetData()
  • {
  • using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySQL"].ConnectionString))
  • {
  • conn.Open();
  • string query = @"SELECT b.id AS Id,
  • ProductCode,
  • ProductDescription,
  • b.AreaID as AreaID,
  • MinimumMonths,
  • LAST_DAY(DATE_ADD(NOW(), INTERVAL MinimumMonths MONTH)) AS BestBeforeDate
  • FROM technical_bestbeforedates b"; ;
  • var records = conn.Query<Technical_BestBeforeDates_Model>(query).ToList();
  • return records;
  • }
  • }
  • private static bool Filter(Technical_BestBeforeDates_Model tbm, string code, string description)
  • {
  • return (string.IsNullOrEmpty(code) || tbm.ProductCode.Contains(code)) && (string.IsNullOrEmpty(description) || tbm.ProductDescription.Contains(description));
  • }
  • public static IEnumerable<Technical_BestBeforeDates_Model> GetFilteredData(string code, string description)
  • {
  • return GetData().Where(tbm => Filter(tbm, code, description));
  • }
  • }
  • **Model**
  • public class Technical_BestBeforeDates_Model
  • {
  • public int Id { get; set; }
  • public string ProductCode { get; set; }
  • public string ProductDescription { get; set; }
  • }
  • Just looking to hear some reviews on my current MVVM Implementation, If I am heading towards the right direction. :)
  • **Code**
  • **BaseViewModel**
  • public class BaseViewModel : INotifyPropertyChanged
  • {
  • public event PropertyChangedEventHandler PropertyChanged;
  • protected void OnPropertyChanged(string propertyName)
  • {
  • if (PropertyChanged != null)
  • {
  • PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  • }
  • }
  • }
  • **ViewModel**
  • public class Technical_BestBeforeDates_ViewModel : BaseViewModel
  • {
  • // Loading + Filtering Data
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • OnPropertyChanged(nameof(ProductCode));
  • UpdateDataFromDatabase();
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • OnPropertyChanged(nameof(ProductDescription));
  • UpdateDataFromDatabase();
  • }
  • }
  • public ObservableCollection<Technical_BestBeforeDates_Model> BestBeforeDates_Models { get; }
  • public void UpdateDataFromDatabase()
  • {
  • BestBeforeDates_Models.Clear();
  • var records = Technical_BestBeforeData.GetFilteredData(ProductCode, ProductDescription);
  • foreach (Technical_BestBeforeDates_Model model in records)
  • {
  • BestBeforeDates_Models.Add(model);
  • }
  • }
  • // Open New Window Command
  • public ICommand OpenCreateNewRecordCommand { get; set; }
  • public void OpenWindow()
  • {
  • Technical_BestBeforeDates_CreateNewView window = new Technical_BestBeforeDates_CreateNewView()
  • {
  • WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
  • DataContext = new Technical_BestBeforeDates_CreateNewViewModel()
  • };
  • window.ShowDialog();
  • }
  • // Constructor
  • public Technical_BestBeforeDates_ViewModel()
  • {
  • BestBeforeDates_Models = new ObservableCollection<Technical_BestBeforeDates_Model>();
  • UpdateDataFromDatabase();
  • OpenCreateNewRecordCommand = new RelayCommand(_ => OpenWindow());
  • }
  • }
  • **CreateNewViewModel**
  • public class Technical_BestBeforeDates_CreateNewViewModel : BaseViewModel
  • {
  • private Technical_BestBeforeDates_Model _NewModel_;
  • public Technical_BestBeforeDates_Model NewModel
  • {
  • get { return _NewModel_; }
  • set
  • {
  • _NewModel_ = value;
  • OnPropertyChanged(nameof(NewModel));
  • }
  • }
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = _ProductCode,
  • ProductDescription = this.ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductCode));
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = this.ProductCode,
  • ProductDescription = _ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductDescription));
  • }
  • }
  • public ICommand CreateNewRecordCommand { get; set; }
  • public void CreateNewRecord(object param)
  • {
  • var vm = param as Technical_BestBeforeDates_Model;
  • System.Windows.MessageBox.Show(vm.ProductCode);
  • }
  • public Technical_BestBeforeDates_CreateNewViewModel()
  • {
  • CreateNewRecordCommand = new RelayCommand(param => CreateNewRecord(param));
  • }
  • }
  • **RelayCommand**
  • public class RelayCommand : ICommand
  • {
  • private Action<object> execute;
  • private Predicate<object> canExecute;
  • private event EventHandler CanExecuteChangedInternal;
  • public RelayCommand(Action<object> execute)
  • : this(execute, DefaultCanExecute)
  • {
  • }
  • public RelayCommand(Action<object> execute, Predicate<object> canExecute)
  • {
  • if (execute == null)
  • {
  • throw new ArgumentNullException("execute");
  • }
  • if (canExecute == null)
  • {
  • throw new ArgumentNullException("canExecute");
  • }
  • this.execute = execute;
  • this.canExecute = canExecute;
  • }
  • public event EventHandler CanExecuteChanged
  • {
  • add
  • {
  • CommandManager.RequerySuggested += value;
  • this.CanExecuteChangedInternal += value;
  • }
  • remove
  • {
  • CommandManager.RequerySuggested -= value;
  • this.CanExecuteChangedInternal -= value;
  • }
  • }
  • public bool CanExecute(object parameter)
  • {
  • return this.canExecute != null && this.canExecute(parameter);
  • }
  • public void Execute(object parameter)
  • {
  • this.execute(parameter);
  • }
  • public void OnCanExecuteChanged()
  • {
  • EventHandler handler = this.CanExecuteChangedInternal;
  • if (handler != null)
  • {
  • handler.Invoke(this, EventArgs.Empty);
  • }
  • }
  • public void Destroy()
  • {
  • this.canExecute = _ => false;
  • this.execute = _ => { return; };
  • }
  • private static bool DefaultCanExecute(object parameter)
  • {
  • return true;
  • }
  • }
  • **Data Storage - Technical_BestBeforeData**
  • public static class Technical_BestBeforeData
  • {
  • private static List<Technical_BestBeforeDates_Model> GetData()
  • {
  • using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySQL"].ConnectionString))
  • {
  • conn.Open();
  • string query = @"SELECT b.id AS Id,
  • ProductCode,
  • ProductDescription,
  • b.AreaID as AreaID,
  • MinimumMonths,
  • LAST_DAY(DATE_ADD(NOW(), INTERVAL MinimumMonths MONTH)) AS BestBeforeDate
  • FROM technical_bestbeforedates b"; ;
  • var records = conn.Query<Technical_BestBeforeDates_Model>(query).ToList();
  • return records;
  • }
  • }
  • private static bool Filter(Technical_BestBeforeDates_Model tbm, string code, string description)
  • {
  • return (string.IsNullOrEmpty(code) || tbm.ProductCode.Contains(code)) && (string.IsNullOrEmpty(description) || tbm.ProductDescription.Contains(description));
  • }
  • public static IEnumerable<Technical_BestBeforeDates_Model> GetFilteredData(string code, string description)
  • {
  • return GetData().Where(tbm => Filter(tbm, code, description));
  • }
  • }
  • **Model**
  • public class Technical_BestBeforeDates_Model
  • {
  • public int Id { get; set; }
  • public string ProductCode { get; set; }
  • public string ProductDescription { get; set; }
  • }
#2: Post edited by user avatar gzi98‭ · 2021-02-01T15:46:37Z (about 3 years ago)
  • C# WPF MVVM View & Create Record
  • C# WPF MVVM View & Get new record values
  • Just looking to hear some reviews on my current MVVM Implementation.
  • **Code**
  • **BaseViewModel**
  • public class BaseViewModel : INotifyPropertyChanged
  • {
  • public event PropertyChangedEventHandler PropertyChanged;
  • protected void OnPropertyChanged(string propertyName)
  • {
  • if (PropertyChanged != null)
  • {
  • PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  • }
  • }
  • }
  • **ViewModel**
  • public class Technical_BestBeforeDates_ViewModel : BaseViewModel
  • {
  • // Loading + Filtering Data
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • OnPropertyChanged(nameof(ProductCode));
  • UpdateDataFromDatabase();
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • OnPropertyChanged(nameof(ProductDescription));
  • UpdateDataFromDatabase();
  • }
  • }
  • public ObservableCollection<Technical_BestBeforeDates_Model> BestBeforeDates_Models { get; }
  • public void UpdateDataFromDatabase()
  • {
  • BestBeforeDates_Models.Clear();
  • var records = Technical_BestBeforeData.GetFilteredData(ProductCode, ProductDescription);
  • foreach (Technical_BestBeforeDates_Model model in records)
  • {
  • BestBeforeDates_Models.Add(model);
  • }
  • }
  • // Open New Window Command
  • public ICommand OpenCreateNewRecordCommand { get; set; }
  • public void OpenWindow()
  • {
  • Technical_BestBeforeDates_CreateNewView window = new Technical_BestBeforeDates_CreateNewView()
  • {
  • WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
  • DataContext = new Technical_BestBeforeDates_CreateNewViewModel()
  • };
  • window.ShowDialog();
  • }
  • // Constructor
  • public Technical_BestBeforeDates_ViewModel()
  • {
  • BestBeforeDates_Models = new ObservableCollection<Technical_BestBeforeDates_Model>();
  • UpdateDataFromDatabase();
  • OpenCreateNewRecordCommand = new RelayCommand(_ => OpenWindow());
  • }
  • }
  • **CreateNewViewModel**
  • public class Technical_BestBeforeDates_CreateNewViewModel : BaseViewModel
  • {
  • private Technical_BestBeforeDates_Model _NewModel_;
  • public Technical_BestBeforeDates_Model NewModel
  • {
  • get { return _NewModel_; }
  • set
  • {
  • _NewModel_ = value;
  • OnPropertyChanged(nameof(NewModel));
  • }
  • }
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = _ProductCode,
  • ProductDescription = this.ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductCode));
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = this.ProductCode,
  • ProductDescription = _ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductDescription));
  • }
  • }
  • public ICommand CreateNewRecordCommand { get; set; }
  • public void CreateNewRecord(object param)
  • {
  • var vm = param as Technical_BestBeforeDates_Model;
  • System.Windows.MessageBox.Show(vm.ProductCode);
  • }
  • public Technical_BestBeforeDates_CreateNewViewModel()
  • {
  • CreateNewRecordCommand = new RelayCommand(param => CreateNewRecord(param));
  • }
  • }
  • **RelayCommand**
  • public class RelayCommand : ICommand
  • {
  • private Action<object> execute;
  • private Predicate<object> canExecute;
  • private event EventHandler CanExecuteChangedInternal;
  • public RelayCommand(Action<object> execute)
  • : this(execute, DefaultCanExecute)
  • {
  • }
  • public RelayCommand(Action<object> execute, Predicate<object> canExecute)
  • {
  • if (execute == null)
  • {
  • throw new ArgumentNullException("execute");
  • }
  • if (canExecute == null)
  • {
  • throw new ArgumentNullException("canExecute");
  • }
  • this.execute = execute;
  • this.canExecute = canExecute;
  • }
  • public event EventHandler CanExecuteChanged
  • {
  • add
  • {
  • CommandManager.RequerySuggested += value;
  • this.CanExecuteChangedInternal += value;
  • }
  • remove
  • {
  • CommandManager.RequerySuggested -= value;
  • this.CanExecuteChangedInternal -= value;
  • }
  • }
  • public bool CanExecute(object parameter)
  • {
  • return this.canExecute != null && this.canExecute(parameter);
  • }
  • public void Execute(object parameter)
  • {
  • this.execute(parameter);
  • }
  • public void OnCanExecuteChanged()
  • {
  • EventHandler handler = this.CanExecuteChangedInternal;
  • if (handler != null)
  • {
  • handler.Invoke(this, EventArgs.Empty);
  • }
  • }
  • public void Destroy()
  • {
  • this.canExecute = _ => false;
  • this.execute = _ => { return; };
  • }
  • private static bool DefaultCanExecute(object parameter)
  • {
  • return true;
  • }
  • }
  • **Data Storage - Technical_BestBeforeData**
  • public static class Technical_BestBeforeData
  • {
  • private static List<Technical_BestBeforeDates_Model> GetData()
  • {
  • using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySQL"].ConnectionString))
  • {
  • conn.Open();
  • string query = @"SELECT b.id AS Id,
  • ProductCode,
  • ProductDescription,
  • b.AreaID as AreaID,
  • MinimumMonths,
  • LAST_DAY(DATE_ADD(NOW(), INTERVAL MinimumMonths MONTH)) AS BestBeforeDate
  • FROM technical_bestbeforedates b"; ;
  • var records = conn.Query<Technical_BestBeforeDates_Model>(query).ToList();
  • return records;
  • }
  • }
  • private static bool Filter(Technical_BestBeforeDates_Model tbm, string code, string description)
  • {
  • return (string.IsNullOrEmpty(code) || tbm.ProductCode.Contains(code)) && (string.IsNullOrEmpty(description) || tbm.ProductDescription.Contains(description));
  • }
  • public static IEnumerable<Technical_BestBeforeDates_Model> GetFilteredData(string code, string description)
  • {
  • return GetData().Where(tbm => Filter(tbm, code, description));
  • }
  • }
  • **Model**
  • public class Technical_BestBeforeDates_Model
  • {
  • public int Id { get; set; }
  • public string ProductCode { get; set; }
  • public string ProductDescription { get; set; }
  • }
  • Just looking to hear some reviews on my current MVVM Implementation, If I am heading towards the right direction. :)
  • **Code**
  • **BaseViewModel**
  • public class BaseViewModel : INotifyPropertyChanged
  • {
  • public event PropertyChangedEventHandler PropertyChanged;
  • protected void OnPropertyChanged(string propertyName)
  • {
  • if (PropertyChanged != null)
  • {
  • PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  • }
  • }
  • }
  • **ViewModel**
  • public class Technical_BestBeforeDates_ViewModel : BaseViewModel
  • {
  • // Loading + Filtering Data
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • OnPropertyChanged(nameof(ProductCode));
  • UpdateDataFromDatabase();
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • OnPropertyChanged(nameof(ProductDescription));
  • UpdateDataFromDatabase();
  • }
  • }
  • public ObservableCollection<Technical_BestBeforeDates_Model> BestBeforeDates_Models { get; }
  • public void UpdateDataFromDatabase()
  • {
  • BestBeforeDates_Models.Clear();
  • var records = Technical_BestBeforeData.GetFilteredData(ProductCode, ProductDescription);
  • foreach (Technical_BestBeforeDates_Model model in records)
  • {
  • BestBeforeDates_Models.Add(model);
  • }
  • }
  • // Open New Window Command
  • public ICommand OpenCreateNewRecordCommand { get; set; }
  • public void OpenWindow()
  • {
  • Technical_BestBeforeDates_CreateNewView window = new Technical_BestBeforeDates_CreateNewView()
  • {
  • WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
  • DataContext = new Technical_BestBeforeDates_CreateNewViewModel()
  • };
  • window.ShowDialog();
  • }
  • // Constructor
  • public Technical_BestBeforeDates_ViewModel()
  • {
  • BestBeforeDates_Models = new ObservableCollection<Technical_BestBeforeDates_Model>();
  • UpdateDataFromDatabase();
  • OpenCreateNewRecordCommand = new RelayCommand(_ => OpenWindow());
  • }
  • }
  • **CreateNewViewModel**
  • public class Technical_BestBeforeDates_CreateNewViewModel : BaseViewModel
  • {
  • private Technical_BestBeforeDates_Model _NewModel_;
  • public Technical_BestBeforeDates_Model NewModel
  • {
  • get { return _NewModel_; }
  • set
  • {
  • _NewModel_ = value;
  • OnPropertyChanged(nameof(NewModel));
  • }
  • }
  • private string _ProductCode;
  • public string ProductCode
  • {
  • get { return _ProductCode; }
  • set
  • {
  • _ProductCode = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = _ProductCode,
  • ProductDescription = this.ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductCode));
  • }
  • }
  • private string _ProductDescription;
  • public string ProductDescription
  • {
  • get { return _ProductDescription; }
  • set
  • {
  • _ProductDescription = value;
  • NewModel = new Technical_BestBeforeDates_Model
  • {
  • ProductCode = this.ProductCode,
  • ProductDescription = _ProductDescription
  • };
  • OnPropertyChanged(nameof(ProductDescription));
  • }
  • }
  • public ICommand CreateNewRecordCommand { get; set; }
  • public void CreateNewRecord(object param)
  • {
  • var vm = param as Technical_BestBeforeDates_Model;
  • System.Windows.MessageBox.Show(vm.ProductCode);
  • }
  • public Technical_BestBeforeDates_CreateNewViewModel()
  • {
  • CreateNewRecordCommand = new RelayCommand(param => CreateNewRecord(param));
  • }
  • }
  • **RelayCommand**
  • public class RelayCommand : ICommand
  • {
  • private Action<object> execute;
  • private Predicate<object> canExecute;
  • private event EventHandler CanExecuteChangedInternal;
  • public RelayCommand(Action<object> execute)
  • : this(execute, DefaultCanExecute)
  • {
  • }
  • public RelayCommand(Action<object> execute, Predicate<object> canExecute)
  • {
  • if (execute == null)
  • {
  • throw new ArgumentNullException("execute");
  • }
  • if (canExecute == null)
  • {
  • throw new ArgumentNullException("canExecute");
  • }
  • this.execute = execute;
  • this.canExecute = canExecute;
  • }
  • public event EventHandler CanExecuteChanged
  • {
  • add
  • {
  • CommandManager.RequerySuggested += value;
  • this.CanExecuteChangedInternal += value;
  • }
  • remove
  • {
  • CommandManager.RequerySuggested -= value;
  • this.CanExecuteChangedInternal -= value;
  • }
  • }
  • public bool CanExecute(object parameter)
  • {
  • return this.canExecute != null && this.canExecute(parameter);
  • }
  • public void Execute(object parameter)
  • {
  • this.execute(parameter);
  • }
  • public void OnCanExecuteChanged()
  • {
  • EventHandler handler = this.CanExecuteChangedInternal;
  • if (handler != null)
  • {
  • handler.Invoke(this, EventArgs.Empty);
  • }
  • }
  • public void Destroy()
  • {
  • this.canExecute = _ => false;
  • this.execute = _ => { return; };
  • }
  • private static bool DefaultCanExecute(object parameter)
  • {
  • return true;
  • }
  • }
  • **Data Storage - Technical_BestBeforeData**
  • public static class Technical_BestBeforeData
  • {
  • private static List<Technical_BestBeforeDates_Model> GetData()
  • {
  • using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySQL"].ConnectionString))
  • {
  • conn.Open();
  • string query = @"SELECT b.id AS Id,
  • ProductCode,
  • ProductDescription,
  • b.AreaID as AreaID,
  • MinimumMonths,
  • LAST_DAY(DATE_ADD(NOW(), INTERVAL MinimumMonths MONTH)) AS BestBeforeDate
  • FROM technical_bestbeforedates b"; ;
  • var records = conn.Query<Technical_BestBeforeDates_Model>(query).ToList();
  • return records;
  • }
  • }
  • private static bool Filter(Technical_BestBeforeDates_Model tbm, string code, string description)
  • {
  • return (string.IsNullOrEmpty(code) || tbm.ProductCode.Contains(code)) && (string.IsNullOrEmpty(description) || tbm.ProductDescription.Contains(description));
  • }
  • public static IEnumerable<Technical_BestBeforeDates_Model> GetFilteredData(string code, string description)
  • {
  • return GetData().Where(tbm => Filter(tbm, code, description));
  • }
  • }
  • **Model**
  • public class Technical_BestBeforeDates_Model
  • {
  • public int Id { get; set; }
  • public string ProductCode { get; set; }
  • public string ProductDescription { get; set; }
  • }
#1: Initial revision by user avatar gzi98‭ · 2021-02-01T15:45:56Z (about 3 years ago)
C# WPF MVVM View & Create Record
Just looking to hear some reviews on my current MVVM Implementation.

**Code**

**BaseViewModel**

    public class BaseViewModel : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        protected void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }


**ViewModel**

    public class Technical_BestBeforeDates_ViewModel : BaseViewModel
    {

        // Loading + Filtering Data
        private string _ProductCode;
        public string ProductCode
        {
            get { return _ProductCode; }
            set
            {
                _ProductCode = value;
                OnPropertyChanged(nameof(ProductCode));
                UpdateDataFromDatabase();
            }
        }

        private string _ProductDescription;
        public string ProductDescription
        {
            get { return _ProductDescription; }
            set
            {
                _ProductDescription = value;
                OnPropertyChanged(nameof(ProductDescription));
                UpdateDataFromDatabase();
            }
        }

        public ObservableCollection<Technical_BestBeforeDates_Model> BestBeforeDates_Models { get; }

        public void UpdateDataFromDatabase()
        {
            BestBeforeDates_Models.Clear();

            var records = Technical_BestBeforeData.GetFilteredData(ProductCode, ProductDescription);
            foreach (Technical_BestBeforeDates_Model model in records)
            {
                BestBeforeDates_Models.Add(model);
            }
        }

        // Open New Window Command
        public ICommand OpenCreateNewRecordCommand { get; set; }

        public void OpenWindow()
        {
            Technical_BestBeforeDates_CreateNewView window = new Technical_BestBeforeDates_CreateNewView()
            {
                WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
                DataContext = new Technical_BestBeforeDates_CreateNewViewModel()
            };
            window.ShowDialog();
        }


        // Constructor
        public Technical_BestBeforeDates_ViewModel()
        {
            BestBeforeDates_Models = new ObservableCollection<Technical_BestBeforeDates_Model>();

            UpdateDataFromDatabase();

            OpenCreateNewRecordCommand = new RelayCommand(_ => OpenWindow());
        }
    }

**CreateNewViewModel**

    public class Technical_BestBeforeDates_CreateNewViewModel : BaseViewModel
    {

        private Technical_BestBeforeDates_Model _NewModel_;

        public Technical_BestBeforeDates_Model NewModel
        {
            get { return _NewModel_; }
            set
            {
                _NewModel_ = value;
                OnPropertyChanged(nameof(NewModel));
            }
        }

        private string _ProductCode;

        public string ProductCode
        {
            get { return _ProductCode; }
            set
            {
                _ProductCode = value;
                NewModel = new Technical_BestBeforeDates_Model
                {
                    ProductCode = _ProductCode,
                    ProductDescription = this.ProductDescription
                };
                OnPropertyChanged(nameof(ProductCode));
            }
        }

        private string _ProductDescription;

        public string ProductDescription
        {
            get { return _ProductDescription; }
            set
            {
                _ProductDescription = value;
                NewModel = new Technical_BestBeforeDates_Model
                {
                    ProductCode = this.ProductCode,
                    ProductDescription = _ProductDescription
                };
                OnPropertyChanged(nameof(ProductDescription));
            }
        }

        public ICommand CreateNewRecordCommand { get; set; }

        public void CreateNewRecord(object param)
        {
            var vm = param as Technical_BestBeforeDates_Model;

            System.Windows.MessageBox.Show(vm.ProductCode);
        }

        public Technical_BestBeforeDates_CreateNewViewModel()
        {
            CreateNewRecordCommand = new RelayCommand(param => CreateNewRecord(param));
        }
    }

**RelayCommand**

   public class RelayCommand : ICommand
    {
        private Action<object> execute;

        private Predicate<object> canExecute;

        private event EventHandler CanExecuteChangedInternal;

        public RelayCommand(Action<object> execute)
            : this(execute, DefaultCanExecute)
        {
        }

        public RelayCommand(Action<object> execute, Predicate<object> canExecute)
        {
            if (execute == null)
            {
                throw new ArgumentNullException("execute");
            }

            if (canExecute == null)
            {
                throw new ArgumentNullException("canExecute");
            }

            this.execute = execute;
            this.canExecute = canExecute;
        }

        public event EventHandler CanExecuteChanged
        {
            add
            {
                CommandManager.RequerySuggested += value;
                this.CanExecuteChangedInternal += value;
            }

            remove
            {
                CommandManager.RequerySuggested -= value;
                this.CanExecuteChangedInternal -= value;
            }
        }

        public bool CanExecute(object parameter)
        {
            return this.canExecute != null && this.canExecute(parameter);
        }

        public void Execute(object parameter)
        {
            this.execute(parameter);
        }

        public void OnCanExecuteChanged()
        {
            EventHandler handler = this.CanExecuteChangedInternal;
            if (handler != null)
            {
                handler.Invoke(this, EventArgs.Empty);
            }
        }

        public void Destroy()
        {
            this.canExecute = _ => false;
            this.execute = _ => { return; };
        }

        private static bool DefaultCanExecute(object parameter)
        {
            return true;
        }
    }



**Data Storage - Technical_BestBeforeData**

    public static class Technical_BestBeforeData
    {

        private static List<Technical_BestBeforeDates_Model> GetData()
        {
            using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySQL"].ConnectionString))
            {
                conn.Open();

                string query = @"SELECT b.id AS Id, 
                                        ProductCode, 
                                        ProductDescription, 
                                        b.AreaID as AreaID,
                                        MinimumMonths,
	                                    LAST_DAY(DATE_ADD(NOW(), INTERVAL MinimumMonths MONTH)) AS BestBeforeDate
                                    FROM technical_bestbeforedates b"; ;


                var records = conn.Query<Technical_BestBeforeDates_Model>(query).ToList();
                return records;
            }
        }

        private static bool Filter(Technical_BestBeforeDates_Model tbm, string code, string description)
        {
            return (string.IsNullOrEmpty(code) || tbm.ProductCode.Contains(code)) && (string.IsNullOrEmpty(description) || tbm.ProductDescription.Contains(description));
        }
            

        public static IEnumerable<Technical_BestBeforeDates_Model> GetFilteredData(string code, string description)
        {
            return GetData().Where(tbm => Filter(tbm, code, description));
        }
            

    }

**Model**

    public class Technical_BestBeforeDates_Model
    {
        public int Id { get; set; }
        public string ProductCode { get; set; }
        public string ProductDescription { get; set; }
    }