using System.Collections.Generic; namespace UIWidgetsSamples.Shops { public interface IOrder { List GetOrderLines(); int OrderLinesCount(); int Total(); } }