コード例 #1
0
        public async Task <ActionResult <ITable[]> > Get()
        {
            try
            {
                var all = await horasCrud.GetAll();

                return(Ok(all));
            }
            catch (System.Exception)
            {
                return(BadRequest());

                throw;
            }
        }