ISupplierGrid.cs 204 B

1234567891011
  1. using System;
  2. namespace PRSDesktop
  3. {
  4. public interface ISupplierGrid
  5. {
  6. Guid SupplierID { get; set; }
  7. bool IsReady { get; }
  8. void Refresh(bool columns, bool data);
  9. }
  10. }