예제 #1
0
 public Ep1Service()
 {
     contexto = new Ep1Entities();
     overlayDao = new OverlayDao(contexto);
     menuDao = new MenuDao(contexto);
     gatesDao = new GatesDao(contexto);
     restaurantDao = new RestaurantDao(contexto);
 }
예제 #2
0
 public RestaurantDao(Ep1Entities contexto)
 {
     this.contexto = contexto;
 }
예제 #3
0
 public GatesDao(Ep1Entities contexto)
 {
     this.contexto = contexto;
 }
예제 #4
0
 public MenuDao(Ep1Entities contexto)
 {
     this.contexto = contexto;
 }