Added tests & renamed classes

This commit is contained in:
Erhan KARAKAYA
2019-06-16 09:31:29 +03:00
parent de469b4940
commit 1d52e33e2d
4 changed files with 39 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
package com.baeldung.autoservice;
import java.util.Locale;
public interface TranslationService {
String translate(String message, Locale from, Locale to);
}