public FacultadController(IFacultadesService fs, IMultyTenancyService nodo)
 {
     _nodoFacultad      = nodo;
     _facultadesService = fs;
 }
예제 #2
0
 public LoginController(IUserService userService, IFacultadesService fs, IMultyTenancyService nodo)
 {
     _userService       = userService;
     _nodoFacultad      = nodo;
     _facultadesService = fs;
 }
 public FacultadController(IMultyTenancyService mt, IFacultadesService ifs)
 {
     facultadesService   = ifs;
     multyTenancyService = mt;
 }
        /*    public FacultadController(IFacultadesService ifs) {
         *      facultadesService = ifs;
         *  }*/

        public AdministradorController(IMultyTenancyService mt, IUserService ias, IFacultadesService ifs)
        {
            userService         = ias;
            facultadService     = ifs;
            multyTenancyService = mt;
        }