예제 #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;
 }
 public MultyTenancyService(ContextoGeneral ctx_general, ContextoParticular ctx_particular)
 {
     _context_general    = ctx_general;
     _context_particular = ctx_particular;
 }
 public FacultadService(ContextoGeneral ctx, ContextoParticular ctxPart, ISQLUtil SQLUtil)
 {
     _context           = ctx;
     _contextParticular = ctxPart;
     _sqlutil           = SQLUtil;
 }
예제 #4
0
 public ConversacionService(ContextoParticular ctx, ContextoGeneral ctxg)
 {
     _context         = ctx;
     _contextoGeneral = ctxg;
 }
예제 #5
0
 public EncuestaUDELARService(ContextoParticular ctx, ContextoGeneral ctxg)
 {
     _context         = ctx;
     _contextoGeneral = ctxg;
 }