public RectangleRange Get(string collegeName)
 {
     return(_repository.GetRange(collegeName));
 }
Esempio n. 2
0
        public IHttpActionResult Get(string collegeName)
        {
            var range = _repository.GetRange(collegeName);

            return(range == null ? (IHttpActionResult)BadRequest("College Not Found Or without region!") : Ok(range));
        }