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