Ejemplo n.º 1
0
 public List<Tag> List() {
   TagDB tagDB = new TagDB();
   return this.GenerateObjectList(tagDB.List());
 }
Ejemplo n.º 2
0
 public int Delete(int CodTag) {
   TagDB tagDB = new TagDB();
   return tagDB.Delete(CodTag);
 }
Ejemplo n.º 3
0
 public Tag Get(int CodTag) {
   TagDB tagDB = new TagDB();
   return this.GenerateObject(tagDB.Get(CodTag));
 }
Ejemplo n.º 4
0
 public int Update(int CodTag, String Name, boolean IsGoogleTag, int CodParentTag) {
   TagDB tagDB = new TagDB();
   return tagDB.Update(CodTag, Name, IsGoogleTag, CodParentTag);
 }