Skip to content

Instantly share code, notes, and snippets.

@mariobot
Last active August 29, 2015 14:27
Show Gist options
  • Save mariobot/e6f86d1161f4c5f485ca to your computer and use it in GitHub Desktop.
Save mariobot/e6f86d1161f4c5f485ca to your computer and use it in GitHub Desktop.
IRepository
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CodedHomes.Data
{
public interface IRepository<T> where T : class
{
IQueryable<T> GetAll();
T GetById(int id);
void Add(T entity);
void Update(T entity);
void Delete(T entity);
void Delete(int id);
void Detach(T entity);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment