public async Task <IActionResult> Get()
        {
            var res = await repository.AllAsync();

            return(Ok(res));
        }