public IHttpActionResult GetDV()//
        {
            List <Service> list = dao.GetDichVu();

            if (list.Count == 0)
            {
                return(NotFound());
            }

            return(Ok(list));
        }