CustomerSpreadsheetGrid.cs 292 B

12345678910111213
  1. using Comal.Classes;
  2. namespace PRSDesktop
  3. {
  4. public class CustomerSpreadsheetGrid : SpreadsheetGrid<CustomerSpreadsheet, Customer, CustomerLink>, ICustomerGrid
  5. {
  6. public Customer Customer
  7. {
  8. get => Entity;
  9. set => Entity = value;
  10. }
  11. }
  12. }