Beispiel #1
0
        public void Save()
        {
            var bookGateWay = new BookTDG();

            if (ID != null)
            {
                bookGateWay.Update((int)this.ID, (int)this.Author.ID, this.Title, this.Genre, (int)this.Available);
            }
            else
            {
                int tmpId = bookGateWay.Insert((int)this.Author.ID, this.Title, this.Genre, (int)this.Available);
                ID = tmpId;
            }
        }