Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace SupplierManual.Data
  7. {
  8.     public interface IRepository: IDisposable
  9.     {
  10.         IQueryable<TEntity> Queriable<TEntity>() where TEntity : class;
  11.         void Add<TEntity>(TEntity entity) where TEntity : class;
  12.         void Update<TEntity>(TEntity entity) where TEntity : class;
  13.         void Delete<TEntity>(TEntity entity) where TEntity : class;
  14.     }
  15. }
Add Comment
Please, Sign In to add comment