Ejemplo n.º 1
0
        public List <Invoice> LoadByObjectQuery(ObjectQuery.OQuery <Invoice> query)
        {
            List <Invoice> invoices;

            invoices = new List <Invoice>();
            for (int i = 0; i < 9; i++)
            {
                invoices.Add(new Invoice(_ids[i])
                {
                    Amount = i + 1
                });
            }
            return(invoices);
        }
Ejemplo n.º 2
0
 public List <Client> LoadByObjectQuery(ObjectQuery.OQuery <Client> query)
 {
     return(_list);
 }
Ejemplo n.º 3
0
 public EntityList <EntityMock> LoadByObjectQuery(ObjectQuery.OQuery <EntityMock> query)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
        public void TestSimpleQuery()
        {
            OQuery <EntityMock> query;

            query = new OQuery <EntityMock>();
        }
Ejemplo n.º 5
0
 public IList <EntityMock> Fetch(ObjectQuery.OQuery <EntityMock> query)
 {
     throw new NotImplementedException();
 }