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