Example #1
0
        public IActionResult GetSearchedMonstersWithMatchs(int targetId)
        {
            var monsters = _tradingService.GetSearchedMonstersWithMatchs(this.AuthenticatedUserId(), targetId);

            return(Ok(monsters));
        }