public FormUsuario(IRepoUsuario <Usuario> repo)
 {
     InitializeComponent();
     _repo = repo;
 }
Exemple #2
0
 public SeguridadService(IRepoUsuario repoUsuario, IRepoPaciente repoPaciente)
 {
     this._repoUsuario  = repoUsuario;
     this._repoPaciente = repoPaciente;
 }