Example #1
0
 public KptController(ITableUtils tableUtils, IKptListLogic kptListLogic)
 {
     this.tableUtils   = tableUtils;
     this.kptListLogic = kptListLogic;
 }
Example #2
0
 public KptListLogic(ITableUtils tableUtils)
 {
     this.tableUtils = tableUtils;
 }
Example #3
0
 public LoginController(ITableUtils tableUtils)
 {
     this.tableUtils = tableUtils;
 }
Example #4
0
 public HomeController(ILogger <HomeController> logger, IDbConnection database, ITableUtils repo)
 {
     Database = database;
     _logger  = logger;
     _repo    = repo;
 }