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