public async Task <IActionResult> Get()
        {
            var e = await _employeeQueries.SelectAllEmployee();

            return(Ok(e));
        }