Example #1
0
 public void getName()
 {
     Party_CAD cad=new Party_CAD();
     name = cad.getName(id);
 }
Example #2
0
        public void obtainNotes()
        {
            Party_CAD cad = new Party_CAD();
            this.Notes = new List<Note_Class>();

            this.notes = cad.obtainNotes(this.Id);
        }
Example #3
0
 public bool deleteParty()
 {
     Party_CAD item = new Party_CAD();
     return item.deleteParty(this);
 }
Example #4
0
 //Crear grupo
 public bool createParty()
 {
     Party_CAD item = new Party_CAD();
     return item.createParty(this);
 }
Example #5
0
 public bool addNote(Note_Class note, int author_id)
 {
     Party_CAD cad = new Party_CAD();
     return cad.addNote(note, this.Id, author_id);
 }
Example #6
0
        //Obtener los grupos
        public List<Party_Class> userGroups(int id)
        {
            Party_CAD partyCad = new Party_CAD();

            return partyCad.userGroups(id);
        }
Example #7
0
        public void update()
        {
            Party_CAD item = new Party_CAD();

            item.update(this);
        }