public HttpResponseMessage Post([FromBody] GeradorCnpj gerador)
        {
            //gerador = CnpjUtils.GerarCnpj();
            bool valido = CnpjUtils.ValidarCnpj(gerador);

            return(Request.CreateResponse(HttpStatusCode.OK, valido));
        }
예제 #2
0
 internal static bool ValidarCnpj(GeradorCnpj gerador)
 {
     throw new NotImplementedException();
 }