Guest User

Untitled

a guest
Feb 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 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.     interface IRepository
  9.     {
  10.         void Add<TEntity>(TEntity entity);
  11.         void Update<TEntity>(TEntity entity);
  12.         void Delete<TEntity>(TEntity entity);
  13.     }
  14. }
Add Comment
Please, Sign In to add comment