COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.EntityFramework/EntityDataAccess.cs

31 lines
705 B
C#
Raw Normal View History

2020-10-14 00:56:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
namespace COA.EnterpriseServices.DataAccess.EntityFramework
{
public class EntityDataAccess<T> : IDataAccess<T> where T : IRecord
{
public bool Add(T item)
{
throw new NotImplementedException();
}
public bool Update(T item)
{
throw new NotImplementedException();
}
public ICollection<T> Get(int id)
{
throw new NotImplementedException();
}
public ICollection<T> Get(Expression<Func<T, bool>> query)
{
throw new NotImplementedException();
}
}
}