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