using System.Collections.Generic; namespace BlueWater.Interfaces { public interface IDataContainer { List GetData(); void SetData(List data); } }