public FacturaProveedoresController()
 {
     _repo = new RepoCustom();
 }
Esempio n. 2
0
 public PermisosController()
 {
     _repo = new RepoCustom();
 }
Esempio n. 3
0
 public PermisosController(IRepoCustom repoCustom)
 {
     _repo = repoCustom;
 }
 public SocialWorkController(IRepoCustom repoCustom)
 {
     _repo = repoCustom;
 }
 public OrdenPagoController()
 {
     _repo = new RepoCustom();
 }
 public SocialWorkController()
 {
     _repo = new RepoCustom();
 }
Esempio n. 7
0
 public ExpensesController(IRepoCustom repoCustom)
 {
     _repo = repoCustom;
 }
Esempio n. 8
0
 public ExpensesController()
 {
     _repo     = new RepoCustom();
     path_file = ConfigurationManager.AppSettings["path_files"].ToString();
 }
Esempio n. 9
0
 public UsersController(IRepoCustom repoCustom)
 {
     _repo = repoCustom;
 }
Esempio n. 10
0
 public UsersController()
 {
     _repo = new RepoCustom();
 }