Exemplo n.º 1
0
 public PaymentTypeController(IConfiguration config)
 {
     _storage = new PaymentTypeStorage(config);
 }
 public PaymentTypeController(DatabaseInterface db)
 {
     _db          = db;
     _paymentType = new PaymentTypeStorage(db);
 }