using Comal.Classes; namespace PRSDesktop { public class CustomerSpreadsheetGrid : SpreadsheetGrid, ICustomerGrid { public Customer Customer { get => Entity; set => Entity = value; } } }