public async Task <IActionResult> Get()
        {
            try
            {
                var results = await _repo.GetAllTurmasAsync(false);

                return(Ok(results));
            }
            catch (System.Exception)
            {
                throw;
            }
        }