예제 #1
0
        public async Task <IActionResult> Create(CompleteCardInformationDto card)
        {
            try
            {
                card.Id = "";
                var teste = await _cardService.Create(card);

                return(Ok(teste));
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw;
            }
        }