Exemplo n.º 1
0
 public VerbindingRepository(IVerbindingContext context)
 {
     Context = context;
 }
Exemplo n.º 2
0
 public VerbindingController(IConfiguration configuration)
 {
     context   = new MSSQLVerbindingContext(configuration.GetConnectionString("DefaultConnection"));
     repo      = new VerbindingRepository(context);
     converter = new VerbindingViewModelConverter();
 }