using POCDistance.Models; using System.Collections.Generic; namespace POCDistance.DAL { public interface IDataSourceAdapter { public List GetLocations(); } }