public static List <Importacion> ListarImportacionesStockCliente(Object id) { RepoImportacion r = new RepoImportacion(); List <Importacion> importaciones = r.ImportacionesEnStockCliente(id); return(importaciones); }
public static decimal CalcularGananciaPorCliente(Object id) { RepoCliente repoCliente = new RepoCliente(); RepoImportacion r = new RepoImportacion(); decimal ganancia = repoCliente.ObtenerPorcentajeGanancia(); decimal descuento = repoCliente.ObtenerPorcentajeDescuento(); int antiguedad = repoCliente.ObtenerAntiguedadMinima(); decimal total = 0; foreach (Importacion i in r.ImportacionesEnStockCliente(id)) { total += i.GananciaPrevista(ganancia, descuento, antiguedad); } return(total); }