Mercurial > silverbladetech
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightExampleApp/SilverlightExampleApp.Interfaces/Services/IClientDataService.cs Tue Apr 17 17:57:52 2012 +0100 @@ -0,0 +1,14 @@ +using System.Collections.Generic; +using SilverlightExampleApp.Interfaces.Models; + +namespace SilverlightExampleApp.Interfaces.Services +{ + public interface IClientDataService + { + IClient Get(int id); + IList<IClient> GetAll(); + void Insert(IClient item); + void Update(IClient item); + void Delete(IClient item); + } +}