public IHttpActionResult GetMedicine_byName(string CatelogyName)
        {
            List <Medicine> list = dao.Search_Thuoc(CatelogyName);

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

            return(Ok(list));
        }