예제 #1
0
 // RETURNS NULL WHEN ABOVECATEGORY IS NULL
 public abstract Category GetAboveCategory(Category category);
예제 #2
0
 public abstract IEnumerable<Article> GetArticlesByCategory(Category category);
예제 #3
0
 public abstract bool DeleteCategory(Category category);
예제 #4
0
 public abstract bool DeleteCategoryFromArticle(Article article, Category category, bool delete_all = false);
예제 #5
0
 public abstract bool UpdateCategory(Category category);
예제 #6
0
 // Add, basically the same as Save, but you can Add many categories/authorships/annotations to the same article
 // So to point this out I used different word
 public abstract bool AddCategoryToArticle(Article article, Category category);
예제 #7
0
파일: Xml.cs 프로젝트: kamilk/BdProject
 public void AddCategory(Category category)
 {
     XmlNode node = this.CreateDatafield("904");
     XmlNode categ= this.CreateSubfield(category.Info, "a");
     node.AppendChild(categ);
     record.AppendChild(node);
 }
예제 #8
0
 public abstract bool SaveCategory(Category category);
예제 #9
0
 public override bool AddCategoryToArticle(Article article, Category category)
 {
     throw new NotImplementedException();
 }
예제 #10
0
 public override bool UpdateCategory(Category category)
 {
     throw new NotImplementedException();
 }
예제 #11
0
 public override IEnumerable<Article> GetArticlesByCategory(Category category)
 {
     throw new NotImplementedException();
 }
예제 #12
0
 public override Category GetAboveCategory(Category category)
 {
     throw new NotImplementedException();
 }
예제 #13
0
 public override bool DeleteCategoryFromArticle(Article article, Category category, bool delete_all = false)
 {
     throw new NotImplementedException();
 }