Exemplo n.º 1
0
 IEnumerator IEnumerable.GetEnumerator() => FakeDataBase <TEntity> .List(typeof(TEntity)).GetEnumerator();
Exemplo n.º 2
0
 public IEnumerator <TEntity> GetEnumerator() => FakeDataBase <TEntity> .List(typeof(TEntity)).GetEnumerator();
Exemplo n.º 3
0
 public TEntity Find(object Key) => FakeDataBase <TEntity> .Find(typeof(TEntity), Key);
Exemplo n.º 4
0
        public string Remove(TEntity entity)
        {
            FakeDataBase <TEntity> .Remove(typeof(TEntity), entity);

            return($"{typeof(TEntity)} Remove");
        }
Exemplo n.º 5
0
        public string Update(TEntity entity)
        {
            FakeDataBase <TEntity> .Update(typeof(TEntity), entity);

            return($"{typeof(TEntity)} Update");
        }
Exemplo n.º 6
0
        public string Add(TEntity entity)
        {
            FakeDataBase <TEntity> .Add(typeof(TEntity), entity);

            return($"{typeof(TEntity)} Added");
        }