示例#1
0
 public BestillingController(IBestillingRepository db, ILogger <BestillingController> log)
 {
     _log = log;
     _db  = db;
 }
示例#2
0
 public BestillingLogikk(IBestillingRepository stub)
 {
     _repository = stub;
 }
 public BestillingController(IBestillingRepository db)
 {
     _db = db;
 }
示例#4
0
 public BestillingLogikk()
 {
     _repository = new BestillingRepository();
 }