public IHttpActionResult Get(int id)
        {
            Sector p = SectorDao.getSectorBySectorId(id);

            if (p != null)
            {
                return(Ok(p));
            }
            else
            {
                return(NotFound());
            }
        }