public string toExcelLine() { string line; Rubro rubro = this.getParent(); line = rubro.nombre + "\t" + this.nombre + "\t" + this.unidad + "\t" + this.detalles; return(line); }
public void UpdateRubro(Rubro rubro) { connection.Update(rubro); }
public void DeleteRubro(Rubro rubro) { connection.Delete(rubro); }
public void InsertRubro(Rubro rubro) { connection.Insert(rubro); }
public Rubro getParent() { Rubro rubro = Rubro.read().Find(x => x.id == this.rubro_Id); return(rubro); }