Beispiel #1
0
        public ResponseBussiness <ReporteDevolucionesSKUResponse[]> ReporteDevolucionesSKU(ReporteDevolucionesSKURequest request)
        {
            TokenDto token = new TokenService().Get();
            ResponseBussiness <ReporteDevolucionesSKUResponse[]> response = new ReporteBusiness(token).ReporteDevolucionesPorSKU(request);

            return(response);
        }
Beispiel #2
0
 /// <summary>
 /// Reporte de Devoluciones por SKU
 /// </summary>
 /// <returns>Respuesta de la operación</returns>
 public ResponseBussiness <ReporteDevolucionesSKUResponse[]> ReporteDevolucionesPorSKU(ReporteDevolucionesSKURequest request)
 {
     return(tryCatch.SafeExecutor(() =>
     {
         return repository.ReporteDevolucionesSKU(request.FechaInicial, request.FechaFinal, token.CodeStore);
     }));
 }