public async Task <IActionResult> Insert(OperacionModel model)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }
            var operacion = _mapper.Map <OperacionDto>(model);
            await _operacionServicio.Insertar(operacion);

            return(Ok(model));
        }
        public async Task <IActionResult> Edit(long id, OperacionModel model)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            var operacion = _mapper.Map <OperacionDto>(model);

            operacion.Id = id;
            await _operacionServicio.Modificar(operacion);

            return(Ok(model));
        }