| Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/Silverlight/Bin/ |
| Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/Silverlight/Bin/IContactsService.cs |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.Collections.ObjectModel;
namespace DevExpress.MailClient.DataService {
[ServiceContract]
public interface IContactsService {
[OperationContract]
ObservableCollection<ServerContact> GetContacts();
}
}