Example #1
0
 public UoWRepository(SFContext ctx)
 {
     Cliente  = new ClienteRepository(ctx);
     Empresa  = new EmpresaRepository(ctx);
     Factura  = new FacturaRepository(ctx);
     Partida  = new PartidaRepository(ctx);
     Producto = new ProductoRepository(ctx);
 }
Example #2
0
 public ConsoleService()
 {
     _jogadorRepository = new JogadorRepository();
     _partidaRepository = new PartidaRepository();
 }