private void OpenPostWindow()
 {
     PostPopUpView              = new PostingPopUpView();
     PostPopUpView.ItemToPost   = itemToLookUp;
     PostPopUpView.BuyoutTxtBox = SearchedList.Any() ? SearchedList.Min(Auction => Auction.Buyout).ToString() : "0";
     PostPopUpView.BidTxtBox    = "0";
     PostPopUpView.db           = db;
     PostPopUpView.Show();
 }