예제 #1
0
 public void Update()
 {
     AuthorDALC.Update(id, firstName, lastName);
 }
예제 #2
0
        public void Update()
        {
            AuthorDALC dalc = new AuthorDALC();

            dalc.Update(this.id, this.lastName, this.firstName);
        }