using System; using Comal.Classes; namespace PRSDesktop { public interface ICustomerGrid { Customer Customer { get; set; } bool IsReady { get; } void Refresh(bool columns, bool data); } }