using System; using System.Collections.Generic; using System.ServiceModel; //+ namespace TabulaRasa.Service.Client { public class PersonClient : ClientBase, IPersonService { //- @Ctor -// public PersonClient(String endpointConfigurationName) : base(endpointConfigurationName) { } //+ //- @LoadPersonList -// public List LoadPersonList() { return base.Channel.LoadPersonList(); } //- @LoadPerson -// public Person LoadPerson(int personId) { return base.Channel.LoadPerson(personId); } //- @InitDatabase -// public void InitDatabase() { base.Channel.InitDatabase(); } //- @LoadPersonWithSimulatedException -// public Person LoadPersonWithSimulatedException() { return base.Channel.LoadPersonWithSimulatedException(); } //- @SavePerson -// public Int32 SavePerson(Person person) { return base.Channel.SavePerson(person); } } }