public GustoEmpanadaService(MasterEntities db)
 {
     this.db = db;
     this.GustoEmpanadaRepository = new GustoEmpanadaRepository(db);
 }
 public GustoEmpanadaService()
 {
     this.db = new MasterEntities();
     this.GustoEmpanadaRepository = new GustoEmpanadaRepository(db);
 }