using System.Collections.Generic; namespace SuperAdmin { public interface ISuperAdmin { void Login(); List<object> DisplayReport(); void PrintReport(); void ExportReport(int page); } }