Ejemplo n.º 1
0
        public List <Hydrant> GetHydrants(GeoBox _geoBox)
        {
            HydrantDAO dao = new HydrantDAO(MongoDB);

            return(dao.GetHydrants(_geoBox));
        }
Ejemplo n.º 2
0
        public List <Hydrant> GetHydrants(GeoBox _geoBox, int _quantity)
        {
            HydrantDAO dao = new HydrantDAO(MongoDB);

            return(dao.GetHydrants(_geoBox, _quantity));
        }
Ejemplo n.º 3
0
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public List <Hydrant> GetHydrants()
        {
            HydrantDAO dao = new HydrantDAO(MongoDB);

            return(dao.GetHydrants());
        }