COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.QuickBase/QuickBaseDataAccess.cs
2020-10-13 21:24:27 -04:00

30 lines
690 B
C#

using System;
using System.Collections.Generic;
using System.Linq.Expressions;
namespace COA.EnterpriseServices.DataAccess.QuickBase
{
public class QuickBaseDataAccess<T> : IDataAccess<T> where T : class, 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();
}
}
}