public string Hinban_CUD([FromBody] TourokuProjectModel Tmodel)
        {
            if (!string.IsNullOrWhiteSpace(Tmodel.SalePrice))
            {
                Tmodel.SalePrice = Tmodel.SalePrice.Replace(",", "");
            }
            if (!string.IsNullOrWhiteSpace(Tmodel.Production))
            {
                Tmodel.Production = Tmodel.Production.Replace(",", "");
            }
            if (!string.IsNullOrWhiteSpace(Tmodel.EstimatedPrice))
            {
                Tmodel.EstimatedPrice = Tmodel.EstimatedPrice.Replace(",", "");
            }
            TourokuProject_BL Tpbl = new TourokuProject_BL();

            return(Tpbl.Hinban_CUD(Tmodel));
        }