using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.ServiceModel.DomainServices.Hosting;
using System.ServiceModel.DomainServices.Server;
namespace WebMVC.TestSilverlightHost.Services
{
// TODO: Create methods containing your application logic.
[EnableClientAccess()]
public class PropertyBoundaryDomainService : DomainService
{
public bool SaveGraphics(IEnumerable<ESRI.ArcGIS.Client.Graphic> GraphicCollection)
{
return false;
}
}
}