public BookController(IRepasitory <Book> repasitory) { this.repasitory = repasitory; }
public CategoryController(IRepasitory <Category> repasitory) { this.repasitory = repasitory; }
public PostRepasitory() { _repo = new Repasitory(connectionString); }
public ThreadRepasitory() { _repo = new Repasitory(connectionString); }
public BookCategoryController(IRepasitory <BookCategory> repasitory) { this.repasitory = repasitory; this.c_repository = c_repository; this.b_repository = b_repository; }
public AuthorController(IRepasitory <Author> repasitory) { this.repasitory = repasitory; }
public TopicRepasitory() { _repo = new Repasitory(connectionString); }
public BookAuthorController(IRepasitory <BookAuthor> repasitory) { this.repasitory = repasitory; this.a_repository = a_repository; this.b_repository = b_repository; }
public PublicationsController(IRepasitory <Publications> repasitory) { this.repasitory = repasitory; }