예제 #1
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public void AddToCategories(Category category)
 {
     base.AddObject("Categories", category);
 }
예제 #2
0
파일: Customer.cs 프로젝트: JohanOtto/Nova
 // Method does not fire NotifyPropertyChanged
 public void SetCategorySilent(Category ct)
 {
     this._Category = ct;
     this._CategoryId = ct != null ? ct.Id : 0;
 }
예제 #3
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public static Category CreateCategory(int ID, string name)
 {
     Category category = new Category();
     category.Id = ID;
     category.Name = name;
     return category;
 }