Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/Silverlight/Bin/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/Silverlight/Bin/IRealtorWorldDataService.cs

using System;
using System.Collections.Generic;
using System.ServiceModel;
using DevExpress.RealtorWorld.Xpf.Model;

namespace DevExpress.RealtorWorld.DataService {
    [ServiceContract]
    public interface IRealtorWorldDataService {
        [OperationContract]
        IList<Home> GetHomes();
        [OperationContract]
        IList<Agent> GetAgents();
        [OperationContract]
        IList<Home> GetAgentHomes(int agentID);
        [OperationContract]
        IList<AgentStatisticData> GetAgentStatistic(int agentID);
        [OperationContract]
        IList<MortgageRate> GetMortgageRates();
        [OperationContract]
        IList<HomePhoto> GetPhotos(int homeID);
        [OperationContract]
        byte[] GetLayout(int homeID);
        [OperationContract]
        Agent GetHomeAgent(int homeID);
        [OperationContract]
        IList<StaticticPoint> GetPopularityRating(int homeID);
        [OperationContract]
        IList<StaticticPoint> GetPrices(int homeID);
        [OperationContract]
        IList<SimilarHousesStatisticData> GetSimilarHouses(int homeID);
        [OperationContract]
        IList<byte[]> GetPlugins();
    }
}