public UserService(IOptions <AppSettings> appSettings, ContextoParticular ctx, ContextoGeneral ctG, IOptions <SmtpSettings> smtpSettings, IOptions <BedeliasAppSettings> bedelias) { _appSettings = appSettings.Value; _context = ctx; _contextoGeneral = ctG; _smtpSettings = smtpSettings.Value; _bedeliasSettings = bedelias.Value; }
public MultyTenancyService(ContextoGeneral ctx_general, ContextoParticular ctx_particular) { _context_general = ctx_general; _context_particular = ctx_particular; }
public ConversacionService(ContextoParticular ctx, ContextoGeneral ctxg) { _context = ctx; _contextoGeneral = ctxg; }
public ClaseService(ContextoParticular ctx) { _context = ctx; }
public ForoService(ContextoParticular ctx) { _context = ctx; }
public SQLUtil(ContextoParticular ctx) { _context = ctx; }
public DiscusionService(ContextoParticular ctx) { _context = ctx; }
public ComentarioService(ContextoParticular ctx) { _context = ctx; }
public FacultadService(ContextoGeneral ctx, ContextoParticular ctxPart, ISQLUtil SQLUtil) { _context = ctx; _contextParticular = ctxPart; _sqlutil = SQLUtil; }
public CursoService(ContextoParticular ctx, IOptions <BedeliasAppSettings> bedelias) { _context = ctx; _bedeliasSettings = bedelias.Value; }
public EncuestaUDELARService(ContextoParticular ctx, ContextoGeneral ctxg) { _context = ctx; _contextoGeneral = ctxg; }
public MaterialService(ContextoParticular ctx) { _context = ctx; }
public EvaluacionService(ContextoParticular _contextoParticular, IMaterialService materialService) { _context = _contextoParticular; _materialSerivce = materialService; }
public CalendarioService(ContextoParticular ctx) { _context = ctx; }
public PersonaService(ContextoParticular ctx) { _context = ctx; }