public WebResponseContentModel <bool> DeleteClientCategorie(int clientID, int clientCategorieID)
        {
            WebResponseContentModel <bool> model = new WebResponseContentModel <bool>();

            try
            {
                model = GetResponseFromWebRequest <WebResponseContentModel <bool> >(WebServiceHelper.DeleteClientCategorie(clientID, clientCategorieID), "get");
            }
            catch (Exception ex)
            {
                model.ValidationErrorAppSide = ConcatenateExceptionMessage(ex);
            }

            return(model);
        }