Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stoolrossa/5943544 to your computer and use it in GitHub Desktop.
Save stoolrossa/5943544 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using ESRI.ArcGIS.Geodatabase;
using Blog.SoeExample.Model;
namespace Blog.SoeExample.Repository
{
public interface IExampleRepository
{
// workspace dependency
IWorkspace Workspace { get; set; }
// select parcels with matching land use
IList<Parcel> SelectParcelsWithLandUse(string landUse);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment