Interface methods

This commit is contained in:
Fabio Sinibaldi 2020-11-23 15:20:16 +01:00
parent 96ebf5e828
commit 682840c611
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@ public interface ConcessioniI {
public String create(String toCreate) throws Exception;
public String readById(String id) throws Exception;
public String getAll() throws Exception;
public String update(String id,String updated) throws Exception;
public String addSection(String id,String updated) throws Exception;
}