ILicenseService GetAllModules Method CelloSaaS API Documentation
This method is used to get all the module details

Namespace: CelloSaaS.ServiceContracts.LicenseManagement
Assembly: CelloSaaS.ServiceContracts (in CelloSaaS.ServiceContracts.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax

Dictionary<string, Module> GetAllModules()

Return Value

Type: Dictionary String, Module 
Module details
Examples

public void GetAllModules()
{
    ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>();
    Dictionary<string, Module> moduleDetails = licenseService.GetAllModules();
}
See Also