Created
March 24, 2014 20:57
-
-
Save cerkit/9749015 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using RecordKeeper.Portable.Models; | |
using System.Collections.Generic; | |
namespace RecordKeeper.Data.Interfaces | |
{ | |
public interface IRepository<TEntity> where TEntity : EntityBase | |
{ | |
List<TEntity> GetAll(); | |
TEntity Get(string id); | |
void Update(TEntity entity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment