Showing posts with label rendering. Show all posts
Showing posts with label rendering. Show all posts

Monday, March 26, 2012

Atlas vs. ZumiPage

I gave a quick look to ZumiPage (http://www.zumipage.com/). It's seems so simple even I can do it :) How does it compare to the partial rendering capabilities in Atlas December release?

Thx
dB.

I've had a quick look and it seems like Atlas makes it even easier: just put your usual ASP.NET server controls into an update panel and voilĂ . You should read Nikhil's blog post on the new Atlas features:

http://www.nikhilk.net/AtlasM1.aspx


I don't like the screen-flickering of ZumiPage.

A solution like Atlas orMagicAjax is much easier and better.


Screen flickering? It returns to a postback mode when you can't have AJAX running properly (security or whatever else). My RSS reader disables most of JavaScript apparently - (RssBandit.org), and this forum, for example, doesn't work any more.

I haven't tried this with Atlas yet, but this is something pretty solid - you want the website to continue functionning in either mode. Anyone tried this with Atlas?

-dB.


Another solution makes AJAX programming easy isComfortASP.NET.
I didn't see any flicker with zumi. But I may be blind or my settings are not messed up like his :)
It looks like Microsoft has done a good job copying the idea behind MagicAjax in its December release. ZumiPage looks pretty cool if you're trying to add Ajax to .NET 1.1 apps. Otherwise, why would you choose to go with someone other than Microsoft for Ajax unless the Atlas juggernaut really screws up?
Again, we didn't copy anything but my own RefreshPanel that I published on GotDotNet in March. We didn't even know about ZumiPage and other similar frameworks before these forum posts appeared. By the way, if you do some research on the web, you'll find that there are now many similar frameworks for all technologies (incl. php, java) and I'm pretty sure that most of them grew independantly. Atlas was certainly not first but please... It's not uncommon that many people, when confronted with the same problem, come up with similar solutions, just because there are usually not many really good solutions.

Atlas User Control bug Error rendering control

Hello

Help me with this two:

1. I'm using the latest Atlas July version and I'm getting error 'Error rendering control' in design when I want to use Atlas UpdatePanel in user control. After starting the application the control work fine.

2. If UpdatePanel is passing value from Calendar control to the TextBox control and TextBox property is read only – the value could not be read and vanish after postback.

Thanks for answer and keep up the good work and try with less bugs.

Hi Filip, for #2

As a workaround, you can trap event "Calendar_SelectionChanged" and save the value somewhere else. Also in this method, you can call

popCalendarPanel.Commit(txtDate, currentCal.SelectedDate);

which is how you can do something custom with the pop up result itself.


Thanks

I will try thisand post it back the results.

Saturday, March 24, 2012

atlas timer control with partial rendering -- HELP!

I have this code:

<

formid="form1"runat="server"><atlas:ScriptManagerID="ScriptManager1"runat="server"EnablePartialRendering="true"/><div><atlas:TimerControlID="AtlasTimer"runat="server"Enabled="true"Interval="5000"></atlas:TimerControl></div></form>

What happens is that every very seconds, I get a javascript alert on my screen that says "UNKNOWN ERROR".

I was just testing to see if a timer control would work with Partial Rendering turned on, like I've seen in lots of other examples... but I've tried this on 2 separate servers, tried re-downloading the framework and every time I get this error.

HELP! Any suggestions? I'm using the latest build of ATLAS.

ok.. well, I figured this one out. I guess if you don't have an update panel, then you'll get that error. You'll also get that same error if you have ANY "RESPONSE.WRITE"s in your page. It also doesn't like javascript on your page very much.

no fun.

Wednesday, March 21, 2012

Atlas request discovery

I have a BasePage class that is the base class for all my pages.
This page does a lot of the rendering of the page, the header, footer etc.
This should of course not be done when the request is an atlas request, so in these cases I need to just call base.Render.

The problem is that I can't see any way of discovering that the current request is an Atlas request, it looks exactly the same as a regular request.

Any ideas?

PS: Rewriting to use master pages etc instead is not an option, would take way to much time as this is an enterprise application with several hundreds of pages inheriting the BasePage class.

Thanks,
Einar

ok may b move ur atlas functionality to a webservice
One Way to find out whether a request is an Atlas Request is to use the following piece of code. It is based on my research using Reflector.

bool isAtlasRequest = ScriptManager.GetCurrent(this).IsInPartialRenderingMode;

Works, thanks!

Einar

Atlas render not valid js to side client

I have been developing over ASP.NET with Atlas technology but when Atlas attempt rendering the file jsassociated with object representation of returned object for web method include in that file not valid characters for example:

I have a resource named default.aspx:

<%@dotnet.itags.org. Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<atlas:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<atlas:ServiceReference Path="SistemaPagosServices.asmx" />
</Services>

</atlas:ScriptManager>
<div>

</div>
</form>

<script type="text/xml-script">
<page xmlns:script="http://schemas.microsoft.com/xml-script/2005">
<references>
</references>
<components>
</components>
</page>
</script>

</body>
</html>

and the js file render to client side, we can see the presence of ` character that, of course, is not valid character:

var SistemaPagosServices = new function() {
this.path = "http://localhost/EDIWebServices/SistemaPagosServices.asmx";
var cm=Web.Net.ServiceMethodRequest.createProxyMethod;
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Insert","entity");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Update","entity");
cm(this,"MONEDAProvider_GetByTIPOOPERACIONIDFromTIPOOPERACIONMONEDA","tipooperacionid");
cm(this,"MONEDAProvider_Delete","monedaiso3");
cm(this,"MONEDAProvider_Find","whereClause");
cm(this,"MONEDAProvider_GetAll","start","pageLength");
cm(this,"MONEDAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MONEDAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"MONEDAProvider_Insert","entity");
cm(this,"MONEDAProvider_Update","entity");
cm(this,"ExecuteNonQuery","commandType","commandText");
cm(this,"ExecuteDataSet","commandType","commandText");
cm(this,"ExecuteScalar","commandType","commandText");
cm(this,"MONEDATASAProvider_Delete","monedaiso3","monedatasafecha");
cm(this,"MONEDATASAProvider_Find","whereClause");
cm(this,"MONEDATASAProvider_GetAll","start","pageLength");
cm(this,"MONEDATASAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MONEDATASAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"MONEDATASAProvider_GetByMONEDAISO3MONEDATASAFECHA","monedaiso3","monedatasafecha","start","pageLength");
cm(this,"MONEDATASAProvider_Insert","entity");
cm(this,"MONEDATASAProvider_Update","entity");
cm(this,"PAISProvider_Delete","paisiso2");
cm(this,"PAISProvider_Find","whereClause");
cm(this,"PAISProvider_GetAll","start","pageLength");
cm(this,"PAISProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PAISProvider_GetByPAISISO2","paisiso2","start","pageLength");
cm(this,"PAISProvider_GetByPAISCODIGO","paiscodigo","start","pageLength");
cm(this,"PAISProvider_GetByPAISISO3","paisiso3","start","pageLength");
cm(this,"PAISProvider_Insert","entity");
cm(this,"PAISProvider_Update","entity");
cm(this,"BANCOProvider_Delete","bancoid");
cm(this,"BANCOProvider_Find","whereClause");
cm(this,"BANCOProvider_GetAll","start","pageLength");
cm(this,"BANCOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"BANCOProvider_GetByBANCODIRECTO","bancodirecto","start","pageLength");
cm(this,"BANCOProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"BANCOProvider_GetByBCCID","bccid","start","pageLength");
cm(this,"BANCOProvider_Insert","entity");
cm(this,"BANCOProvider_Update","entity");
cm(this,"PROVEEDORProvider_GetByCENTROPAGOCODFromPROVEEDORCENTROPAGO","centropagocod");
cm(this,"PROVEEDORProvider_Delete","proveedorcodigo");
cm(this,"PROVEEDORProvider_Find","whereClause");
cm(this,"PROVEEDORProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORProvider_GetByPAISISO2","paisiso2","start","pageLength");
cm(this,"PROVEEDORProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORProvider_GetByPROVEEDORPANAMCOD","proveedorpanamcod","start","pageLength");
cm(this,"PROVEEDORProvider_Insert","entity");
cm(this,"PROVEEDORProvider_Update","entity");
cm(this,"PROVEEDORDATOBANCARIOProvider_Delete","proveedorcodigo","bancoid","monedaiso3","proveedorcuenta");
cm(this,"PROVEEDORDATOBANCARIOProvider_Find","whereClause");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByPROVEEDORCODIGOBANCOIDMONEDAISO3PROVEEDORCUENTA","proveedorcodigo","bancoid","monedaiso3","proveedorcuenta","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_Insert","entity");
cm(this,"PROVEEDORDATOBANCARIOProvider_Update","entity");
cm(this,"SISTEMACONTABLEProvider_Delete","sistemacontableid");
cm(this,"SISTEMACONTABLEProvider_Find","whereClause");
cm(this,"SISTEMACONTABLEProvider_GetAll","start","pageLength");
cm(this,"SISTEMACONTABLEProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SISTEMACONTABLEProvider_GetBySISTEMACONTABLEID","sistemacontableid","start","pageLength");
cm(this,"SISTEMACONTABLEProvider_Insert","entity");
cm(this,"SISTEMACONTABLEProvider_Update","entity");
cm(this,"SOCIEDADProvider_Delete","sociedadcod");
cm(this,"SOCIEDADProvider_Find","whereClause");
cm(this,"SOCIEDADProvider_GetAll","start","pageLength");
cm(this,"SOCIEDADProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SOCIEDADProvider_GetBySOCIEDADCOD","sociedadcod","start","pageLength");
cm(this,"SOCIEDADProvider_Insert","entity");
cm(this,"SOCIEDADProvider_Update","entity");
cm(this,"CENTROCONTABLEProvider_GetByCENTROPAGOCODFromCORRELACIONADORENTIDAD","centropagocod");
cm(this,"CENTROCONTABLEProvider_Delete","centrocontablecod");
cm(this,"CENTROCONTABLEProvider_Find","whereClause");
cm(this,"CENTROCONTABLEProvider_GetAll","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROCONTABLEProvider_GetBySISTEMACONTABLEID","sistemacontableid","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetBySOCIEDADCOD","sociedadcod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_Insert","entity");
cm(this,"CENTROCONTABLEProvider_Update","entity");
cm(this,"CENTROPAGOProvider_GetByPROVEEDORCODIGOFromPROVEEDORCENTROPAGO","proveedorcodigo");
cm(this,"CENTROPAGOProvider_GetByCENTROCONTABLECODFromCORRELACIONADORENTIDAD","centrocontablecod");
cm(this,"CENTROPAGOProvider_Delete","centropagocod");
cm(this,"CENTROPAGOProvider_Find","whereClause");
cm(this,"CENTROPAGOProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOProvider_GetByCENTROPAGOCODIGOPAGO","centropagocodigopago","start","pageLength");
cm(this,"CENTROPAGOProvider_Insert","entity");
cm(this,"CENTROPAGOProvider_Update","entity");
cm(this,"PROVEEDORCENTROPAGOProvider_Delete","centropagocod","proveedorcodigo");
cm(this,"PROVEEDORCENTROPAGOProvider_Find","whereClause");
cm(this,"PROVEEDORCENTROPAGOProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByCENTROPAGOCODPROVEEDORCODIGO","centropagocod","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByPROVEEDORCODIGOLOCAL","proveedorcodigolocal","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_Insert","entity");
cm(this,"PROVEEDORCENTROPAGOProvider_Update","entity");
cm(this,"CORRELACIONADORENTIDADProvider_Delete","centropagocod","centrocontablecod");
cm(this,"CORRELACIONADORENTIDADProvider_Find","whereClause");
cm(this,"CORRELACIONADORENTIDADProvider_GetAll","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROPAGOCODCENTROCONTABLECOD","centropagocod","centrocontablecod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_Insert","entity");
cm(this,"CORRELACIONADORENTIDADProvider_Update","entity");
cm(this,"CENTROPAGOCUENTAProvider_Delete","centropagocod","monedaiso3","centropagocuentaid");
cm(this,"CENTROPAGOCUENTAProvider_Find","whereClause");
cm(this,"CENTROPAGOCUENTAProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOCUENTAProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetByCENTROPAGOCODMONEDAISO3CENTROPAGOCUENTAID","centropagocod","monedaiso3","centropagocuentaid","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_Insert","entity");
cm(this,"CENTROPAGOCUENTAProvider_Update","entity");
cm(this,"MEDIOPAGOProvider_Delete","mediopagoid");
cm(this,"MEDIOPAGOProvider_Find","whereClause");
cm(this,"MEDIOPAGOProvider_GetAll","start","pageLength");
cm(this,"MEDIOPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MEDIOPAGOProvider_GetByMEDIOPAGOID","mediopagoid","start","pageLength");
cm(this,"MEDIOPAGOProvider_Insert","entity");
cm(this,"MEDIOPAGOProvider_Update","entity");
cm(this,"TIPOOPERACIONProvider_GetByMONEDAISO3FromTIPOOPERACIONMONEDA","monedaiso3");
cm(this,"TIPOOPERACIONProvider_GetByTIPOOPERACIONIDMONEDAISO3FromCENTROPAGOTIPOOPERACION","tipooperacionid","monedaiso3");
cm(this,"TIPOOPERACIONProvider_Delete","tipooperacionid");
cm(this,"TIPOOPERACIONProvider_Find","whereClause");
cm(this,"TIPOOPERACIONProvider_GetAll","start","pageLength");
cm(this,"TIPOOPERACIONProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TIPOOPERACIONProvider_GetByMEDIOPAGOID","mediopagoid","start","pageLength");
cm(this,"TIPOOPERACIONProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"TIPOOPERACIONProvider_Insert","entity");
cm(this,"TIPOOPERACIONProvider_Update","entity");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONIDFromCENTROPAGOTIPOOPERACION","tipooperacionid");
cm(this,"TIPOOPERACIONMONEDAProvider_Delete","tipooperacionid","monedaiso3");
cm(this,"TIPOOPERACIONMONEDAProvider_Find","whereClause");
cm(this,"TIPOOPERACIONMONEDAProvider_GetAll","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_Insert","entity");
cm(this,"TIPOOPERACIONMONEDAProvider_Update","entity");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Delete","centropagocod","tipooperacionid","monedaiso3");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Find","whereClause");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCODMONEDAISO3CENTROPAGOCUENTAID","centropagocod","monedaiso3","centropagocuentaid","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCODTIPOOPERACIONIDMONEDAISO3","centropagocod","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Insert","entity");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Update","entity");
cm(this,"VIAENTRADAProvider_Delete","viaentradaid");
cm(this,"VIAENTRADAProvider_Find","whereClause");
cm(this,"VIAENTRADAProvider_GetAll","start","pageLength");
cm(this,"VIAENTRADAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"VIAENTRADAProvider_GetByVIAENTRADAID","viaentradaid","start","pageLength");
cm(this,"VIAENTRADAProvider_Insert","entity");
cm(this,"VIAENTRADAProvider_Update","entity");
cm(this,"ESTADODEFACTURAProvider_Delete","estadofacturaid");
cm(this,"ESTADODEFACTURAProvider_Find","whereClause");
cm(this,"ESTADODEFACTURAProvider_GetAll","start","pageLength");
cm(this,"ESTADODEFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ESTADODEFACTURAProvider_GetByESTADOFACTURAID","estadofacturaid","start","pageLength");
cm(this,"ESTADODEFACTURAProvider_Insert","entity");
cm(this,"ESTADODEFACTURAProvider_Update","entity");
cm(this,"FACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFromORDENFACTURA","ordenantecod","viaentradaid","solicitudnumero");
cm(this,"FACTURAProvider_Delete","ordenantecod","facturaid");
cm(this,"FACTURAProvider_Find","whereClause");
cm(this,"FACTURAProvider_GetAll","start","pageLength");
cm(this,"FACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"FACTURAProvider_GetByORDENANTECOD","ordenantecod","start","pageLength");
cm(this,"FACTURAProvider_GetByESTADOFACTURAID","estadofacturaid","start","pageLength");
cm(this,"FACTURAProvider_GetByORDENANTECODFACTURAID","ordenantecod","facturaid","start","pageLength");
cm(this,"FACTURAProvider_Insert","entity");
cm(this,"FACTURAProvider_Update","entity");
cm(this,"SOLICITUDProvider_GetByORDENANTECODFACTURAIDFromORDENFACTURA","ordenantecod","facturaid");
cm(this,"SOLICITUDProvider_Delete","centrocontablecod","viaentradaid","solicitudnumero");
cm(this,"SOLICITUDProvider_Find","whereClause");
cm(this,"SOLICITUDProvider_GetAll","start","pageLength");
cm(this,"SOLICITUDProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SOLICITUDProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"SOLICITUDProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"SOLICITUDProvider_GetByVIAENTRADAID","viaentradaid","start","pageLength");
cm(this,"SOLICITUDProvider_GetByCENTROCONTABLECODVIAENTRADAIDSOLICITUDNUMERO","centrocontablecod","viaentradaid","solicitudnumero","start","pageLength");
cm(this,"SOLICITUDProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"SOLICITUDProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"SOLICITUDProvider_Insert","entity");
cm(this,"SOLICITUDProvider_Update","entity");
cm(this,"ORDENFACTURAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAIDFromTRANSFERENCIAORDENFACTURA","centropagocodigopago","transferenciaid");
cm(this,"ORDENFACTURAProvider_Delete","ordenantecod","viaentradaid","solicitudnumero","facturaid");
cm(this,"ORDENFACTURAProvider_Find","whereClause");
cm(this,"ORDENFACTURAProvider_GetAll","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODFACTURAID","ordenantecod","facturaid","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMERO","ordenantecod","viaentradaid","solicitudnumero","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAID","ordenantecod","viaentradaid","solicitudnumero","facturaid","start","pageLength");
cm(this,"ORDENFACTURAProvider_Insert","entity");
cm(this,"ORDENFACTURAProvider_Update","entity");
cm(this,"SAOTIPOProvider_Delete","saotipoid");
cm(this,"SAOTIPOProvider_Find","whereClause");
cm(this,"SAOTIPOProvider_GetAll","start","pageLength");
cm(this,"SAOTIPOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOTIPOProvider_GetBySAOTIPOID","saotipoid","start","pageLength");
cm(this,"SAOTIPOProvider_Insert","entity");
cm(this,"SAOTIPOProvider_Update","entity");
cm(this,"SAOProvider_Delete","saonumero");
cm(this,"SAOProvider_Find","whereClause");
cm(this,"SAOProvider_GetAll","start","pageLength");
cm(this,"SAOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"SAOProvider_GetBySAOTIPOID","saotipoid","start","pageLength");
cm(this,"SAOProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"SAOProvider_GetBySAONUMERO","saonumero","start","pageLength");
cm(this,"SAOProvider_Insert","entity");
cm(this,"SAOProvider_Update","entity");
cm(this,"SAOCALENDARIOProvider_Delete","saonumero","fechapago");
cm(this,"SAOCALENDARIOProvider_Find","whereClause");
cm(this,"SAOCALENDARIOProvider_GetAll","start","pageLength");
cm(this,"SAOCALENDARIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOCALENDARIOProvider_GetBySAONUMERO","saonumero","start","pageLength");
cm(this,"SAOCALENDARIOProvider_GetBySAONUMEROFECHAPAGO","saonumero","fechapago","start","pageLength");
cm(this,"SAOCALENDARIOProvider_Insert","entity");
cm(this,"SAOCALENDARIOProvider_Update","entity");
cm(this,"ENVIOProvider_Delete","centropagocodigopago","envioid");
cm(this,"ENVIOProvider_Find","whereClause");
cm(this,"ENVIOProvider_GetAll","start","pageLength");
cm(this,"ENVIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ENVIOProvider_GetByCENTROPAGOCODIGOPAGO","centropagocodigopago","start","pageLength");
cm(this,"ENVIOProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"ENVIOProvider_GetByCENTROPAGOCODIGOPAGOENVIOID","centropagocodigopago","envioid","start","pageLength");
cm(this,"ENVIOProvider_Insert","entity");
cm(this,"ENVIOProvider_Update","entity");
cm(this,"ESTADOOUTProvider_Delete","estadooutid");
cm(this,"ESTADOOUTProvider_Find","whereClause");
cm(this,"ESTADOOUTProvider_GetAll","start","pageLength");
cm(this,"ESTADOOUTProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ESTADOOUTProvider_GetByESTADOOUTID","estadooutid","start","pageLength");
cm(this,"ESTADOOUTProvider_Insert","entity");
cm(this,"ESTADOOUTProvider_Update","entity");
cm(this,"TRANSFERENCIAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAIDFromTRANSFERENCIAORDENFACTURA","ordenantecod","viaentradaid","solicitudnumero","facturaid");
cm(this,"TRANSFERENCIAProvider_Delete","centropagocodigopago","transferenciaid");
cm(this,"TRANSFERENCIAProvider_Find","whereClause");
cm(this,"TRANSFERENCIAProvider_GetAll","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TRANSFERENCIAProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByCENTROPAGOCODIGOPAGOENVIOID","centropagocodigopago","envioid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByESTADOOUTID","estadooutid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAID","centropagocodigopago","transferenciaid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"TRANSFERENCIAProvider_Insert","entity");
cm(this,"TRANSFERENCIAProvider_Update","entity");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Delete","ordenantecod","viaentradaid","solicitudnumero","facturaid","transferenciaid","centropagocodigopago");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Find","whereClause");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetAll","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAID","ordenantecod","viaentradaid","solicitudnumero","facturaid","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAID","centropagocodigopago","transferenciaid","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAIDTRANSFERENCIAIDCENTROPAGOCODIGOPAGO","ordenantecod","viaentradaid","solicitudnumero","facturaid","transferenciaid","centropagocodigopago","start","pageLength");
cm(this,"HelloWorld");
}
var gtc = Web.Net.MethodRequest.generateTypedConstructor;
Type.registerNamespace('EDI');
EDI.TRANSFERENCIAORDENFACTURA = gtc("EDI.TRANSFERENCIAORDENFACTURA");
EDI.ORDENFACTURA = gtc("EDI.ORDENFACTURA");
EDI.FACTURA = gtc("EDI.FACTURA");
EDI.CENTROCONTABLE = gtc("EDI.CENTROCONTABLE");
EDI.SISTEMACONTABLE = gtc("EDI.SISTEMACONTABLE");
EDI.TList`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System.Collections.Generic');
System.Collections.Generic.List`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System.ComponentModel');
System.ComponentModel.ListSortDescriptionCollection = gtc("System.ComponentModel.ListSortDescriptionCollection");
Type.registerNamespace('System.Security.Policy');
System.Security.Policy.Evidence = gtc("System.Security.Policy.Evidence");
System.ComponentModel.TypeConverter = gtc("System.ComponentModel.TypeConverter");
EDI.SOCIEDAD = gtc("EDI.SOCIEDAD");
EDI.TList`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CENTROPAGO = gtc("EDI.CENTROPAGO");
EDI.TList`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.PROVEEDORCENTROPAGO = gtc("EDI.PROVEEDORCENTROPAGO");
EDI.PROVEEDOR = gtc("EDI.PROVEEDOR");
EDI.PAIS = gtc("EDI.PAIS");
EDI.TList`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.PROVEEDORDATOBANCARIO = gtc("EDI.PROVEEDORDATOBANCARIO");
EDI.BANCO = gtc("EDI.BANCO");
EDI.TList`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TRANSFERENCIA = gtc("EDI.TRANSFERENCIA");
EDI.TIPOOPERACIONMONEDA = gtc("EDI.TIPOOPERACIONMONEDA");
EDI.TIPOOPERACION = gtc("EDI.TIPOOPERACION");
EDI.MEDIOPAGO = gtc("EDI.MEDIOPAGO");
EDI.TList`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CENTROPAGOTIPOOPERACION = gtc("EDI.CENTROPAGOTIPOOPERACION");
EDI.CENTROPAGOCUENTA = gtc("EDI.CENTROPAGOCUENTA");
EDI.MONEDA = gtc("EDI.MONEDA");
EDI.MONEDATASA = gtc("EDI.MONEDATASA");
EDI.TList`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.SAO = gtc("EDI.SAO");
EDI.SAOTIPO = gtc("EDI.SAOTIPO");
EDI.SAOCALENDARIO = gtc("EDI.SAOCALENDARIO");
EDI.TList`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.SOLICITUD = gtc("EDI.SOLICITUD");
EDI.VIAENTRADA = gtc("EDI.VIAENTRADA");
EDI.TList`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.ENVIO = gtc("EDI.ENVIO");
EDI.ESTADOOUT = gtc("EDI.ESTADOOUT");
EDI.TList`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CORRELACIONADORENTIDAD = gtc("EDI.CORRELACIONADORENTIDAD");
EDI.ESTADODEFACTURA = gtc("EDI.ESTADODEFACTURA");
Type.registerNamespace('System.Data');
System.Data.DataViewManager = gtc("System.Data.DataViewManager");
System.Data.DataTable = gtc("System.Data.DataTable");
System.Data.PropertyCollection = gtc("System.Data.PropertyCollection");
System.Data.DataColumn = gtc("System.Data.DataColumn");
System.Data.DataView = gtc("System.Data.DataView");
System.Data.DataRow = gtc("System.Data.DataRow");
Type.registerNamespace('System.Globalization');
System.Globalization.NumberFormatInfo = gtc("System.Globalization.NumberFormatInfo");
System.Globalization.DateTimeFormatInfo = gtc("System.Globalization.DateTimeFormatInfo");
System.Collections.Generic.List`1[[EDI.MONEDATASA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MONEDATASA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PAIS, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PAIS, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.BANCO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.BANCO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SISTEMACONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SISTEMACONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SOCIEDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SOCIEDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.MEDIOPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MEDIOPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.VIAENTRADA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.VIAENTRADA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ESTADODEFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ESTADODEFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAOTIPO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAOTIPO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAOCALENDARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAOCALENDARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ESTADOOUT, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ESTADOOUT, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System');
System.DayOfWeek = {Sunday:0,Monday:1,Tuesday:2,Wednesday:3,Thursday:4,Friday:5,Saturday:6}
System.DateTimeKind = {Unspecified:0,Utc:1,Local:2}
Type.registerNamespace('System.Reflection');
System.Reflection.MemberTypes = {Constructor:1,Event:2,Field:4,Method:8,Property:16,TypeInfo:32,Custom:64,NestedType:128,All:191}
System.Reflection.MethodAttributes = {ReuseSlot:0,PrivateScope:0,Private:1,FamANDAssem:2,Assembly:3,Family:4,FamORAssem:5,Public:6,MemberAccessMask:7,UnmanagedExport:8,Static:16,Final:32,Virtual:64,HideBySig:128,NewSlot:256,VtableLayoutMask:256,CheckAccessOnOverride:512,Abstract:1024,SpecialName:2048,RTSpecialName:4096,PinvokeImpl:8192,HasSecurity:16384,RequireSecObject:32768,ReservedMask:53248}
System.Reflection.CallingConventions = {Standard:1,VarArgs:2,Any:3,HasThis:32,ExplicitThis:64}
System.Reflection.ParameterAttributes = {None:0,In:1,Out:2,Lcid:4,Retval:8,Optional:16,HasDefault:4096,HasFieldMarshal:8192,Reserved3:16384,Reserved4:32768,ReservedMask:61440}
Type.registerNamespace('System.Runtime.InteropServices');
System.Runtime.InteropServices.LayoutKind = {Sequential:0,Explicit:2,Auto:3}
System.Reflection.TypeAttributes = {NotPublic:0,AutoLayout:0,AnsiClass:0,Class:0,Public:1,NestedPublic:2,NestedPrivate:3,NestedFamily:4,NestedAssembly:5,NestedFamANDAssem:6,NestedFamORAssem:7,VisibilityMask:7,SequentialLayout:8,ExplicitLayout:16,LayoutMask:24,Interface:32,ClassSemanticsMask:32,Abstract:128,Sealed:256,SpecialName:1024,RTSpecialName:2048,Import:4096,Serializable:8192,UnicodeClass:65536,AutoClass:131072,StringFormatMask:196608,CustomFormatClass:196608,HasSecurity:262144,ReservedMask:264192,BeforeFieldInit:1048576,CustomFormatMask:12582912}
System.Reflection.GenericParameterAttributes = {None:0,Covariant:1,Contravariant:2,VarianceMask:3,ReferenceTypeConstraint:4,NotNullableValueTypeConstraint:8,DefaultConstructorConstraint:16,SpecialConstraintMask:28}
System.ComponentModel.DesignerSerializationVisibility = {Hidden:0,Visible:1,Content:2}
System.ComponentModel.ListSortDirection = {Ascending:0,Descending:1}
EDI.EntityState = {Unchanged:0,Added:1,Changed:2,Deleted:3}
System.Data.CommandType = {Text:1,StoredProcedure:4,TableDirect:512}
System.Data.SerializationFormat = {Xml:0,Binary:1}
System.Data.SchemaSerializationMode = {IncludeSchema:1,ExcludeSchema:2}
System.Data.AcceptRejectRule = {None:0,Cascade:1}
System.Data.Rule = {None:0,Cascade:1,SetNull:2,SetDefault:3}
System.Data.DataSetDateTime = {Local:1,Unspecified:2,UnspecifiedLocal:3,Utc:4}
System.Data.MappingType = {Element:1,Attribute:2,SimpleContent:3,Hidden:4}
System.Data.DataViewRowState = {None:0,Unchanged:2,Added:4,Deleted:8,ModifiedCurrent:16,CurrentRows:22,ModifiedOriginal:32,OriginalRows:42}
System.Data.DataRowVersion = {Original:256,Current:512,Proposed:1024,Default:1536}
System.Data.DataRowState = {Detached:1,Unchanged:2,Added:4,Deleted:8,Modified:16}
System.Globalization.CultureTypes = {NeutralCultures:1,SpecificCultures:2,InstalledWin32Cultures:4,AllCultures:7,UserCustomCulture:8,ReplacementCultures:16,WindowsOnlyCultures:32,FrameworkCultures:64}
System.Globalization.DigitShapes = {Context:0,None:1,NativeNational:2}
System.Globalization.CalendarAlgorithmType = {Unknown:0,SolarCalendar:1,LunarCalendar:2,LunisolarCalendar:3}
System.Globalization.CalendarWeekRule = {FirstDay:0,FirstFullWeek:1,FirstFourDayWeek:2}

Why that?


Atlas has a known issue when dealing with generic types (which is where the back quote is coming from). This will be fixed in the next release.

David


davidebb wrote:

Atlas has a known issue when dealing with generic types (which is where the back quote is coming from). This will be fixed in the next release.

David

Thanks Mr. David for your explanation, how long i must wait for the next release?.


Thanks Mr David for the explanation, how long must i wait for the next release?

No date has been annouced yet, but it should be about a month or less.

David