public IQueryable <T> FindAll(bool trackChanges) =>
 !trackChanges?
 _companyEmployeeDbContext.Set <T>()
 .AsNoTracking() :
     _companyEmployeeDbContext.Set <T>();
 public void Create(T entity) => _companyEmployeeDbContext.Set <T>().Add(entity);