Ejemplo n.º 1
0
        public BaseController()
        {
            _packageService     = new PackageService();
            _packageTagService  = new PackageTagService();
            _destinationService = new DestinationService();
            _tagService         = new TagService();
            _vendorService      = new VendorService();
            _visaService        = new VisaService();
            _countryService     = new CountryService();

            ViewBag.Destinations = _destinationService.FilterPlacsBy_Inside_OutSIde_Bd();
        }
Ejemplo n.º 2
0
 public ActionResult GetFilteredDestination()
 {
     return(Json(_destinationService.FilterPlacsBy_Inside_OutSIde_Bd(), JsonRequestBehavior.AllowGet));
 }