Example #1
0
        public List <TenantModel> FetchTenants()
        {
            // Create repository
            var tenantRepository = new TenantRepository();

            // FetchById the themes
            var tenants = tenantRepository.FetchAll();

            return(tenants);
        }