// POST api/<controller>
        public string Post([FromBody] string value)
        {
            RepStringConverter rsc = new RepStringConverter();

            return(rsc.ConvertRep(value));
        }
Beispiel #2
0
 public void TestInitialize()
 {
     _rsc = new RepStringConverter();
     _rv  = new RepValidator();
 }