public HomeController(IBuyAndSellRepository repository)
 {
     this._BuyAndSellRepository = repository;
 }
 public HomeController()
 {
     this._BuyAndSellRepository = new BuyAndSellRepository();
 }