public Author(string Id) { AuthorDALC dalc = new AuthorDALC(); id = Id; dalc.GetData(id, out lastName, out firstName); }
public void Delete() { AuthorDALC.Delete(id); }
public void Update() { AuthorDALC.Update(id, firstName, lastName); }
public void Insert() { AuthorDALC.Insert(id, firstName, lastName); }
public void Update() { AuthorDALC dalc = new AuthorDALC(); dalc.Update(this.id, this.lastName, this.firstName); }