public async Task <IActionResult> Get()
        {
            var transit = _transitRepository.GetAll();

            return(Ok(transit));
        }