ICustomerGrid.cs 224 B

123456789101112
  1. using System;
  2. using Comal.Classes;
  3. namespace PRSDesktop
  4. {
  5. public interface ICustomerGrid
  6. {
  7. Customer Customer { get; set; }
  8. bool IsReady { get; }
  9. void Refresh(bool columns, bool data);
  10. }
  11. }