private void EliminaLotes(string productoId, int compraId)
        {
            var lotes = loteController.GetLotes(productoId, compraId);

            if (lotes != null)
            {
                foreach (var l in lotes)
                {
                    loteController.Delete(l.LoteId);
                }
            }
        }