public async Task <IActionResult> SelectAllAsync()
        {
            var result = await _faculty.SelectAll();

            return(Ok(result));
        }