This commit is contained in:
2021-11-30 19:12:34 +01:00
parent 8519da26a8
commit 2a74410bbe

View File

@ -10,7 +10,7 @@ using de.hottis.genericdatabaseapiservice.Models;
namespace de.hottis.genericdatabaseapiservice.Services {
public interface IDbService {
Task<List<TOUT>> ReadBySelect<TIN, TOUT>(string selectStatement, TIN input);
Task<List<TOUT>> ReadBySelect<TIN, TOUT>(string selectStatement, bool justOne, TIN input);
}
public class DbServiceException : Exception {}