Example #1
0
        public IHttpActionResult GetClienteEstadoComprasFromSoftland([FromBody] LoginViewModel model)
        {
            MaestroMetodosSoftland  m       = new MaestroMetodosSoftland();
            List <ClienteSaldosDTO> clients = m.GetClienteEstadoComprasFromSoftland(model.Nombre);

            return(Ok(clients));
        }