コード例 #1
0
 public IEnumerable <TEntity> Delete(Expression <Func <TEntity, bool> > predicate, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public IEnumerable <TEntity> Delete(IEnumerable <TEntity> entities, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public TEntity Find(Expression <Func <TEntity, bool> > predicate, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public IEnumerable <TSelect> FindAll <TSelect>(Expression <Func <TEntity, bool> > predicate, Expression <Func <TEntity, TSelect> > @select, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public IEnumerable <TEntity> GetAll(CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public IEnumerable <TSelect> GetAll <TSelect>(Expression <Func <TEntity, TSelect> > @select, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
 public bool Delete(int id, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
 public bool Update(int id, TEntity newValues, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #9
0
 public TSelect Find <TSelect>(int id, Expression <Func <TEntity, TSelect> > @select, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #10
0
 public TEntity Find(int id, CrudOptions <TEntity> options)
 {
     throw new NotImplementedException();
 }
コード例 #11
0
 IEnumerable ICrudService <CrudOptions <TEntity> > .GetAll(CrudOptions <TEntity> options) => GetAll(options);