packagename fix
This commit is contained in:
@ -6,9 +6,12 @@ using System.Runtime.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using MySqlConnector;
|
||||
using de.hottis.genericdatabaseapiservice.Models;
|
||||
|
||||
namespace de.hottis.genericdatabaseapiservice.Services {
|
||||
// make sure to adjust the prefix with the PACKAGE_NAME from ENV
|
||||
using com.krohne.genericdatabaseapiservice.Models;
|
||||
|
||||
// make sure to adjust the prefix with the PACKAGE_NAME from ENV
|
||||
namespace com.krohne.genericdatabaseapiservice.Services {
|
||||
public interface IDbService {
|
||||
Task<List<TOUT>> ReadBySelect<TIN, TOUT>(string selectStatement, bool justOne, TIN input);
|
||||
}
|
||||
|
Reference in New Issue
Block a user