コード例 #1
0
 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;
 }
コード例 #2
0
 public MultyTenancyService(ContextoGeneral ctx_general, ContextoParticular ctx_particular)
 {
     _context_general    = ctx_general;
     _context_particular = ctx_particular;
 }
コード例 #3
0
 public ConversacionService(ContextoParticular ctx, ContextoGeneral ctxg)
 {
     _context         = ctx;
     _contextoGeneral = ctxg;
 }
コード例 #4
0
 public ClaseService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #5
0
 public ForoService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #6
0
 public SQLUtil(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #7
0
 public DiscusionService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #8
0
 public ComentarioService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #9
0
 public FacultadService(ContextoGeneral ctx, ContextoParticular ctxPart, ISQLUtil SQLUtil)
 {
     _context           = ctx;
     _contextParticular = ctxPart;
     _sqlutil           = SQLUtil;
 }
コード例 #10
0
 public CursoService(ContextoParticular ctx, IOptions <BedeliasAppSettings> bedelias)
 {
     _context          = ctx;
     _bedeliasSettings = bedelias.Value;
 }
コード例 #11
0
 public EncuestaUDELARService(ContextoParticular ctx, ContextoGeneral ctxg)
 {
     _context         = ctx;
     _contextoGeneral = ctxg;
 }
コード例 #12
0
 public MaterialService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #13
0
 public EvaluacionService(ContextoParticular _contextoParticular, IMaterialService materialService)
 {
     _context         = _contextoParticular;
     _materialSerivce = materialService;
 }
コード例 #14
0
 public CalendarioService(ContextoParticular ctx)
 {
     _context = ctx;
 }
コード例 #15
0
 public PersonaService(ContextoParticular ctx)
 {
     _context = ctx;
 }