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