public int Save() { if (Id == -1) { DalGiaTour.Insert(this); } if (updated) { DalGiaTour.Update(this); } return(this.Id); }
public void Delete() { DalGiaTour.Delete(this); }