Exemplo n.º 1
0
 public HomeController(IBookRepositery bookRepository,
                       IAutherReositery authorRepository,
                       ICuntomerRepositery customerRepository)
 {
     _bookRepository     = bookRepository;
     _authorRepository   = authorRepository;
     _customerRepository = customerRepository;
 }
Exemplo n.º 2
0
 public Auther(IAutherReositery autherRepositery)
 {
     _Autherrepositery = autherRepositery;
 }
Exemplo n.º 3
0
 public Book(IBookRepositery bookRepositery, IAutherReositery autherReositery)
 {
     this.bookRepositery  = bookRepositery;
     this.autherReositery = autherReositery;
 }