using System; namespace PRSDesktop { public interface ISupplierGrid { Guid SupplierID { get; set; } bool IsReady { get; } void Refresh(bool columns, bool data); } }