Ejemplo n.º 1
0
 public List <Book> GetAll()
 {
     return(BookDataRepository.GetAll());
 }
Ejemplo n.º 2
0
 public Book Get(string number)
 {
     return(BookDataRepository.GetBookingByNumber(number));
 }
Ejemplo n.º 3
0
 //TODO wire up dependency injection, discuss what this means to the team
 public BookDataService()
 {
     bookDataRepository = new BookDataRepository();
 }