示例#1
0
 public UsrController(IUsuarioHelper usuarioHelper,
                      IMailHelper mailHelper,
                      RN77Context context)
 {
     this.usuarioHelper = usuarioHelper;
     this.mailHelper    = mailHelper;
     this.context       = context;
 }
示例#2
0
 public CuentaController(IUsuarioHelper usuarioHelper)
 {
     this.usuarioHelper = usuarioHelper;
 }
示例#3
0
 public UsuarioController(IUsuarioHelper usuarioHelper,
                          IMailHelper mailHelper)
 {
     this.usuarioHelper = usuarioHelper;
     this.mailHelper    = mailHelper;
 }
示例#4
0
 public SeedDb(DataContext dataContext, IUsuarioHelper userHelper)
 {
     _dataContext = dataContext;
     _userHelper  = userHelper;
 }
示例#5
0
 public AccountController(IUsuarioHelper userHelper)
 {
     _userHelper = userHelper;
 }
示例#6
0
 public RepositorioTcharlas(RN77Context context, IUsuarioHelper usuarioHelper) : base(context, usuarioHelper)
 {
     this.context       = context;
     this.usuarioHelper = usuarioHelper;
 }
示例#7
0
 //ToDo: actualizar usuario helper con usuario conectado
 public RepositorioGenerico(RN77Context context, IUsuarioHelper usuarioHelper)
 {
     this.context       = context;
     this.usuarioHelper = usuarioHelper;
 }
示例#8
0
 public SeedDb(RN77Context context, IUsuarioHelper userHelper)
 {
     this.context    = context;
     this.userHelper = userHelper;
     this.random     = new Random();
 }