view SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Services/IRepository.cs @ 120:48c389520e5d

initial commit
author stevenh7776
date Thu, 31 May 2012 14:12:43 +0100
parents fa4ba8943048
children
line wrap: on
line source

using System.Collections.Generic;

namespace SilverlightAsyncRestWcf.Services
{
    public interface IRepository<T> where T : class
    {
        T GetById(string id);
        IList<T> GetAll();
        void Insert(T entity);
        void Update(T entity);
        void Delete(string id);
    }
}