public AsistenciaClaseApiController(IEngineTool _tool, IEngineDb _metodo, IEngineProject _funcion, IEngineNotify _notyfy)
 {
     Tool    = _tool;
     Metodo  = _metodo;
     Funcion = _funcion;
     Notify  = _notyfy;
 }
 public HomeController(IEngineProject _Funcion, IEngineHttp _FuncionHttp, IEngineTool _Tool, IEngineProcesor _Proceso)
 {
     this.Funcion     = _Funcion;
     this.FuncionHttp = _FuncionHttp;
     this.Tool        = _Tool;
     this.Proceso     = _Proceso;
 }
 public ContactController(IEngineProject _Funcion, IEngineHttp _FuncionHttp, IEngineTool _Tool, IEngineProcesor _Proceso, IEngineNotify _Notify)
 {
     this.Funcion     = _Funcion;
     this.FuncionHttp = _FuncionHttp;
     this.Tool        = _Tool;
     this.Proceso     = _Proceso;
     this.Notify      = _Notify;
 }
 public ProcesorController(IEngineProject _Funcion, IEngineHttp _FuncionHttp, IEngineTool _Tool, IEngineProcesor _Proceso, IEngineRead _Lector, IEngineNotify _Notify)
 {
     this.Funcion     = _Funcion;
     this.FuncionHttp = _FuncionHttp;
     this.Tool        = _Tool;
     this.Proceso     = _Proceso;
     this.Lector      = _Lector;
     this.Notify      = _Notify;
 }
Esempio n. 5
0
 public EngineProcesor(IEngineHttp _HttpFuncion, IEngineProject _Funcion, IEngineTool _Tool)
 {
     HttpFuncion = _HttpFuncion;
     Funcion     = _Funcion;
     Tool        = _Tool;
 }
 public DeviceApiController(IEngineTool _tool, IEngineDb _metodo, IEngineProject _funcion)
 {
     Tool    = _tool;
     Metodo  = _metodo;
     Funcion = _funcion;
 }
Esempio n. 7
0
 public EngineDb(IEngineProject _funcion, IEngineTool _tool)
 {
     Funcion = _funcion;
     Tool    = _tool;
 }