コード例 #1
0
ファイル: Model.cs プロジェクト: modulexcite/ModernDev
 public static void RemoveCustomer(Customer customer)
 {
     customers.Remove(customer);
 }
コード例 #2
0
ファイル: ViewModel.cs プロジェクト: modulexcite/ModernDev
 public CustomerViewModel()
 {
     model = new Customer();
     ShowSave = true;
 }
コード例 #3
0
ファイル: Model.cs プロジェクト: modulexcite/ModernDev
 public static void AddCustomer(Customer customer)
 {
     customers.Add(customer);
 }
コード例 #4
0
ファイル: ViewModel.cs プロジェクト: modulexcite/ModernDev
 public CustomerViewModel(Customer customer)
 {
     model = customer;
 }