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