public IEnumerable <Khoa> GetAll(string keyword)
 {
     if (!string.IsNullOrEmpty(keyword))
     {
         return(_KhoaRepository.GetMulti(x => x.TenKhoa.Contains(keyword)));
     }
     else
     {
         return(_KhoaRepository.GetAll());
     }
 }