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