public SystemUserApiController(
     ILogService logService,
     IQueryRepository <System_User, int> queryRepository,
     IExcuteDapper <System_User> excuteDapper)
 {
     _logService      = logService;
     _queryRepository = queryRepository;
     _excuteDapper    = excuteDapper;
 }
 public TestController(
     ILogService logService,
     IConfiguration configuration,
     IQueryRepository <System_User, int> queryRepository,
     IExcuteDapper <System_User> excuteDapper)
 {
     _logService      = logService;
     _configuration   = configuration;
     _queryRepository = queryRepository;
     _excuteDapper    = excuteDapper;
 }
 public ExcuteDapper(IExcuteDapper <T> excuteEntity)
 {
     _excuteEntity = excuteEntity;
 }
Esempio n. 4
0
 public System_UserService(IExcuteDapper <System_User> excuteEntity)
 {
     _excuteEntity = excuteEntity;
 }
 public QueryRepository(IExcuteDapper <T> excuteEntity)
 {
     _excuteEntity = excuteEntity;
 }