COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.QuickBase/QuickBaseDataAccess.cs

30 lines
666 B
C#
Raw Normal View History

2020-10-14 01:24:27 +00:00
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)
{
2020-10-14 03:10:25 +00:00
return true;
2020-10-14 01:24:27 +00:00
}
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();
}
}
}