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