Exemplo n.º 1
0
 public TemplateApiController(IServicioRepositorio servicio)
 {
     this.servicio = servicio;
 }
Exemplo n.º 2
0
 public AccountController(IServicioRepositorio servicio)
     : base(servicio)
 {
     ViewBag.Title   = Textos.Menu_Titulo;
     ViewBag.Message = Textos.Menu_Mensaje;
 }
Exemplo n.º 3
0
 public ServicioHub(IServicioRepositorio servicio)
     : base()
 {
     _servicio = servicio;
 }
Exemplo n.º 4
0
 public HomeController(IServicioRepositorio servcio) : base(servcio)
 {
 }
Exemplo n.º 5
0
 public AccountController(IServicioRepositorio servicio)
     : base(servicio)
 {
     ViewBag.Title = Textos.Menu_Titulo;
     ViewBag.Message = Textos.Menu_Mensaje;
 }
Exemplo n.º 6
0
 protected BaseController(IServicioRepositorio servicio)
 {
     this.servicio = servicio;
 }
Exemplo n.º 7
0
 public HomeController(IServicioRepositorio servicio)
 {
     this.servicio = servicio;
 }
Exemplo n.º 8
0
 public ServicioHub(IServicioRepositorio servicio)
     : base()
 {
     _servicio = servicio;
 }
Exemplo n.º 9
0
 protected BaseController(IServicioRepositorio servicio)
 {
     this.servicio = servicio;
 }
Exemplo n.º 10
0
 public HomeController(IServicioRepositorio servcio)
     : base(servcio)
 {
 }
Exemplo n.º 11
0
 public Jugadas(IServicioRepositorio repositorio)
 {
     this.repositorio = repositorio;
     InitializeComponent();
 }