コード例 #1
0
 public BookController(IRepasitory <Book> repasitory)
 {
     this.repasitory = repasitory;
 }
コード例 #2
0
 public CategoryController(IRepasitory <Category> repasitory)
 {
     this.repasitory = repasitory;
 }
コード例 #3
0
 public PostRepasitory()
 {
     _repo = new Repasitory(connectionString);
 }
コード例 #4
0
 public ThreadRepasitory()
 {
     _repo = new Repasitory(connectionString);
 }
コード例 #5
0
 public BookCategoryController(IRepasitory <BookCategory> repasitory)
 {
     this.repasitory   = repasitory;
     this.c_repository = c_repository;
     this.b_repository = b_repository;
 }
コード例 #6
0
 public AuthorController(IRepasitory <Author> repasitory)
 {
     this.repasitory = repasitory;
 }
コード例 #7
0
 public TopicRepasitory()
 {
     _repo = new Repasitory(connectionString);
 }
コード例 #8
0
 public BookAuthorController(IRepasitory <BookAuthor> repasitory)
 {
     this.repasitory   = repasitory;
     this.a_repository = a_repository;
     this.b_repository = b_repository;
 }
コード例 #9
0
 public PublicationsController(IRepasitory <Publications> repasitory)
 {
     this.repasitory = repasitory;
 }