public IQueryable <Order> GetForClient(string companyName)
 {
     return(EfDbSet.Where(o => o.Customer.CompanyName == companyName));
 }