public async Task SellInventoryItemAsync([Remainder] string inventoryMarketHash)
 {
     if (inventoryMarketHash == "*")
     {
         await CsgoTransactionHandler.SellAllInventoryItemAsync(Context);
     }
     else
     {
         await CsgoTransactionHandler.SellInventoryItemAsync(Context, inventoryMarketHash);
     }
 }
 public async Task SellAllSelectedInventoryItemAsync([Remainder] string inventoryMarketHash)
 {
     await CsgoTransactionHandler.SellAllSelectedInventoryItemAsync(Context, inventoryMarketHash);
 }
 public async Task BuyInventoryItemAsync([Remainder] string inventoryMarketHash)
 {
     await CsgoTransactionHandler.BuyItemFromMarketAsync(Context, inventoryMarketHash);
 }