public string M_HinBan_Search_Search([FromBody] TourokuProjectModel Tmodel)
        {
            if (!string.IsNullOrWhiteSpace(Tmodel.StartPrice))
            {
                Tmodel.StartPrice = Tmodel.StartPrice.Replace(",", "");
            }
            if (!string.IsNullOrWhiteSpace(Tmodel.EndPrice))
            {
                Tmodel.EndPrice = Tmodel.EndPrice.Replace(",", "");
            }
            TourokuProject_BL Tpbl = new TourokuProject_BL();

            return(Tpbl.M_HinBan_Search_Search(Tmodel));
        }