public IActionResult ReadCSV(string file) { IAdjuntoRondaProveedorService service = new AdjuntoRondaProveedorService(DbContext); Response <List <AdjuntoRondaProveedor> > response = new Response <List <AdjuntoRondaProveedor> >(); try { List <AdjuntoRondaProveedor> p = service.migrateCsvData(file).Result; response.ok(true, p, "La siguiente lista fue migrada"); return(Ok(response)); } catch (Exception ex) { response.ok(false, new List <AdjuntoRondaProveedor>(), "Error al Migrar la data " + ex.Message); return(BadRequest(response)); } }
public IActionResult SaveRoundAttachmentProvider(AdjuntoRondaProveedor adjuntorondaproveedor) { Response <AdjuntoRondaProveedor> response = new Response <AdjuntoRondaProveedor>(); try { IAdjuntoRondaProveedorService service = new AdjuntoRondaProveedorService(DbContext); Task <AdjuntoRondaProveedor> p = service.save(adjuntorondaproveedor); response.ok(true, p.Result, "Se inserto el adjunto de ronda de proveedor"); return(Ok(response)); } catch (Exception ex) { response.ok(false, null, "Error en el servicio " + ex.Message); return(BadRequest(response)); } }
public IActionResult DeleteRoundAttachmentProviderById(int Id) { IAdjuntoRondaProveedorService service = new AdjuntoRondaProveedorService(DbContext); Response <AdjuntoRondaProveedor> response = new Response <AdjuntoRondaProveedor>(); try { AdjuntoRondaProveedor p = service.deleteById(Id).Result; response.ok(true, p, "Se cambio el estado a DELETE"); return(Ok(response)); } catch (Exception ex) { response.ok(false, new AdjuntoRondaProveedor(), "Error al cambiar estado " + ex.Message); return(BadRequest(response)); } }
public IActionResult Get() { Response <List <AdjuntoRondaProveedor> > response = new Response <List <AdjuntoRondaProveedor> >(); IAdjuntoRondaProveedorService p = new AdjuntoRondaProveedorService(DbContext); try { List <AdjuntoRondaProveedor> listRoundAttachmentProvider = p.finAll().Result; response.ok(true, listRoundAttachmentProvider, "Lista de adjunto de ronda de proveedores regristradas"); return(Ok(response)); } catch (Exception ex) { response.ok(false, new List <AdjuntoRondaProveedor>(), "No hay adjunto de rondas de proveedores en la lista"); return(BadRequest(response)); } }