public ActionResult <IEnumerable <PhoneDTO> > Get(bool orderByName = true, bool asc = true)
        {
            var list = _service.GetAllOrdered(orderByName, asc).ToList();

            return(list);
        }