12 lines
139 B
Java
Raw Normal View History

2015-07-22 23:20:28 +03:00
package com.iluwatar;
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();
}