public async Task ShowItemMarketAsync([Remainder] string filterString = null)
        {
            var pager = CsgoInventoryHandler.GetCsgoMarketInventory(Context, filterString);

            //Send paginated message
            await PagedReplyAsync(pager, new ReactionList
            {
                Jump     = true,
                Forward  = true,
                Backward = true
            });
        }
        public async Task DisplayInventoryAsync()
        {
            //Get paginated message
            var pager = CsgoInventoryHandler.DisplayUserCsgoInventory(Context);

            //Send paginated message
            await PagedReplyAsync(pager, new ReactionList
            {
                Forward  = true,
                Backward = true,
                Jump     = true,
                Trash    = true
            });
        }
 public async Task ShowItemInfoAsync([Remainder] string filterString)
 {
     await CsgoInventoryHandler.DisplayCsgoItemStatistics(Context, filterString);
 }