Beispiel #1
0
        public async Task <IActionResult> CreateFootballEvent([FromBody] Football ev)
        {
            try
            {
                _footballRepository.Create(ev);

                return(Ok());
            }
            catch (Exception ex)
            {
                return(Ok(ex));
            }
        }