1 2 3 4 5 6 7 8 9 10 11 12
| [ServiceContract(Name="EventsService", Namespace="http://www.thatindigogirl.com/2005/12/EventsService")]
public interface IEventsService
{
[OperationContract(Name = "SaveEvent", Action =
"http://www.thatindigogirl.com/2005/12/EventsService/SaveEvent", ReplyAction =
"http://www.thatindigogirl.com/2005/12/EventsService/SaveEventsResponse")]
void SaveEvent(LinkItem item);
[OperationContract(Name = "GetEvent", Action =
"http://www.thatindigogirl.com/2005/12/EventsService/GetEvent", ReplyAction =
"http://www.thatindigogirl.com/2005/12/EventsService/GetEventResponse")]
LinkItem GetEvent();
} |
Partager