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