예제 #1
0
        public Author(string Id)
        {
            AuthorDALC dalc = new AuthorDALC();

            id = Id;
            dalc.GetData(id, out lastName, out firstName);
        }
예제 #2
0
 public void Delete()
 {
     AuthorDALC.Delete(id);
 }
예제 #3
0
 public void Update()
 {
     AuthorDALC.Update(id, firstName, lastName);
 }
예제 #4
0
 public void Insert()
 {
     AuthorDALC.Insert(id, firstName, lastName);
 }
예제 #5
0
        public void Update()
        {
            AuthorDALC dalc = new AuthorDALC();

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