package Practice.School;
public interface doWork {
static final int MAX_WORK = 10;
public void doWork(String WorkType);
public void rest();
}