Beispiel #1
0
 public long Add(book b)
 {
     return(bookDAL.Insert(b));
 }
Beispiel #2
0
 public bool Insert(Book book)
 {
     return(dal.Insert(book) > 0 ? true : false);
 }
Beispiel #3
0
 public IResult Insert(Book book)
 {
     //Business codes
     _bookDal.Insert(book);
     return(new SuccessResult(message: Messages.BookInserted));
 }
Beispiel #4
0
 public void Insert(Book t)
 {
     _bookDAL.Insert(t);
 }