Mercurial > silverbladetech
comparison SilverlightExampleApp/SilverlightExampleApp.Interfaces/Services/IClientDataService.cs @ 49:502f5f365649
Initial load for Silverlight Example Application
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 17 Apr 2012 17:57:52 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:d617b54e1f47 | 49:502f5f365649 |
---|---|
1 using System.Collections.Generic; | |
2 using SilverlightExampleApp.Interfaces.Models; | |
3 | |
4 namespace SilverlightExampleApp.Interfaces.Services | |
5 { | |
6 public interface IClientDataService | |
7 { | |
8 IClient Get(int id); | |
9 IList<IClient> GetAll(); | |
10 void Insert(IClient item); | |
11 void Update(IClient item); | |
12 void Delete(IClient item); | |
13 } | |
14 } |