2015-07-24 11:32:22 +03:00
|
|
|
package com.iluwatar.business.delegate;
|
2015-07-22 23:20:28 +03:00
|
|
|
|
2015-07-23 00:01:39 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Interface for service implementations
|
|
|
|
*
|
|
|
|
*/
|
2015-07-22 23:20:28 +03:00
|
|
|
public interface BusinessService {
|
|
|
|
|
|
|
|
void doProcessing();
|
|
|
|
}
|