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