The code below is the simplest way to implement a function using the SysOperation framework. Without DataController, Dataprovider and UIBuilder. Only with a service class and a MenuItem.
Service
class TutorialSysOperationSimpleService extends SysOperationServiceBase
{
}
The runService() method is the actual service method. The SysEntryPointAttribute attribute controls that no further authorization checks are necessary.
[SysEntryPointAttribute(false)]
public void runService()
{
info("Done");
}
The code below is the simplest way to implement a function using the SysOperation framework. Without DataController, Dataprovider and UIBuilder. Only with a service class and a MenuItem.
Service
The runService() method is the actual service method. The SysEntryPointAttribute attribute controls that no further authorization checks are necessary.