ISuperAdmin.cs 205 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace SuperAdmin
  3. {
  4. public interface ISuperAdmin
  5. {
  6. void Login();
  7. List<object> DisplayReport();
  8. void PrintReport();
  9. void ExportReport(int page);
  10. }
  11. }