using System; using System.Collections.Generic; using System.Linq.Expressions; namespace COA.EnterpriseServices.DataAccess.QuickBase { public class QuickBaseDataAccess : IDataAccess where T : class, IRecord { public bool Add(T item) { return true; } public bool Update(T item) { throw new NotImplementedException(); } public ICollection Get(int id) { throw new NotImplementedException(); } public ICollection Get(Expression> query) { throw new NotImplementedException(); } } }