public UserDemandController(IUserDemandService userDemandService)
 {
     this.userDemandService = userDemandService;
 }
 public SearchBookController(ISearchBookService searchBookService, IUserDemandService userDemandService)
 {
     this.searchBookService = searchBookService;
     this.userDemandService = userDemandService;
 }