Showing posts with label client. Show all posts
Showing posts with label client. Show all posts

Wednesday, March 28, 2012

Atlas with not XML-HTTP ready browser ?

Hello,

I've juste tried Atlas, I put a GridView in a <atlas:UpdatePanel> and it works perfectly, I just wonder : what if the client's browser is not XML-HTTP ready ??

It throw an error, or it just work with a postback (without using Ajax) ?

Nobody has an answer...?

Atlas with Asp.net web pages

I have a problem with how to communicate with Web page using atlas script(i dont want to use Web service).i need to send data from client to server. appriciate if any body can help regard on this matter.

Thanks

Better go for magicajax. Its very simple. Add the dll to project refrence. Put your form tag inside ajax panel and do your natural work. magicajax will take care of the rest.
You can expose a Web Service directly from an ASP.NET Web Page:http://atlas.asp.net/docs/atlas/doc/services/exposing.aspx#webpage

-Mike

you can use atlas:updatepanel around the web controls which you want to update data after postback. The updatepanel will automatic control data send and receive between client and server side, it also automatic refresh the web without reload the page.

Quick way to use atlas update panel:

1. Remember to edit your web.config to configure for Microsoft.Atlas (view the web.config in Atlas setup folder: C:\Program Files\Microsoft ASP.net\Atlas). Remember to copy the Microsoft.Web.Atlas.dll to your bin folder.

2. in your aspx page, remember set runat="server" for head tag. in this section, you can declare a scriptmanger control like this

<head runat="server">
<atlas:ScriptManagerID="ScriptManager1"runat="server"EnableScriptComponents="true"EnablePartialRendering="true"/>
</head>

3. In your aspx body, under the form tag, you add atlas update panel
<form runat="server">
<atlas:UpdatePanel><ContentTemplate>

... your web controls and HTML controls ... here

</

ContentTemplate></atlas:UpdatePanel>
</form>

That all. You don't need to change any code in your .aspx.vb or .aspx.cs file, Run your website project and you will see the effect of Atlas to your page postback behavior.

Of course, above is just the easiest and unprofessional way to apply Atlas to your asp.net website project. You can try the Triggers of the Update Panel and you can read more to take advantages from Atlas.

Happy Atlasen

Saturday, March 24, 2012

Atlas Toolkit Calendar

Does anyone know how to change the selected date in the calendar through client side javascript? I want to verify the date selected is today or later and if it is not then I want to reset the date in the calendar to today's date.

Thanks,

Eric

I don't think you can do that without a postback, you can put that calendar between an UpdatePanel and will look like is client side. Otherwise you may have to use another control. There are plenty on the web

I finally figured it out. The ajax toolkit calendar control, and some of the otehr controols, has a BehaviorID property which can be assigned any value I guess. I called it 'CalBehavior1'. Once that was done, I looked in the JS source file for the control in the source code of the AjaxControlToolKit. In that JS file, I saw the various methods and properties that are exposed on the client side. I have an OnClientDateSelectionChanged event handler attched to the control, so everytime the user selects a date I have some JS code that verifies the selected date is today or later. To set the date in the calender to today, I do the following:

$find(

'CalBehavior1').set_selectedDate($find('CalBehavior1').get_todaysDate());


I finally figured it out while looking at the rounded corners example in the sample website of the Ajax Control Toolkit. The Ajax Toolkit Calendar control, and some of the other controls, has a BehaviorID property which can be assigned any value I guess. I called it 'CalBehavior1'. Once that was done, I looked in the JS source file for the control in the source code of the AjaxControlToolKit. In that JS file, I saw the various methods and properties that are exposed on the client side. I have an OnClientDateSelectionChanged event handler attched to the control, so everytime the user selects a date I have some JS code that verifies the selected date is today or later. To set the date in the calender to today, I do the following:

$find('CalBehavior1').set_selectedDate($find('CalBehavior1').get_todaysDate());

Yea!!!

Eric

Atlas to AJAX migration woes

I have quite a bit of client side code that uses the Sys.UI namespace. Where is Sys.UI.TextBox and Sys.UI.Select? I read a document a few months ago about these being moved, but for the life of me I can not lacate them.

this.orgTextEditBox =new Sys.UI.TextBox( $('<%= this.orgInfoValue.ClientID %>' ) );
this.orgTextEditBox.initialize();

Now this code will not work, what do I need to do to get back ontrack?

Thanks, Bill

I realized that I had not installed the Jan Features CTP, so with that and a change to the following, I have it working

this.orgTextEditBox =new Sys.Preview.UI.TextBox( $get('<%= this.orgInfoValue.ClientID %>' ) );
this.orgTextEditBox.initialize();

Now for a Select option box aka dropdown, it is working, however, the set_enabled() isn't working.I have
the following dataLst.set_enabled(bOption), so it looks like I need to do something else.

Any ideas?

Atlas to Ajax issues

I noticed that Microsoft disabled most of my links to Atlas documentation, in particular the excellent Client Class Library Browser athttp://atlas.asp.net/docs/Client/Browser/jsBrowser.aspx that was invaluable to me in figuring out all the undocumented bits in the CTP release. So I figured I would bite the bullet and upgrade to my web app to the AJAX 1 beta... based on the 'Migration Guide' document it looked pretty painless.

Big, big mistake. It appears that the syntax of virtually every client-side AJAX call I was making has changed radically, and I can't find adequate documentation on the new syntax. I've read the white paper entitled "Changes between the ASP.NET AJAX CTP and the V1.0 Beta/RTM Release" and did not get much help from it. The excellent set of online examples for the CTP do not seem to be present for the Beta version, so I'm fishing around for help to get my app working again.

But enough whining. I'll start with my first issue and maybe I'll stumble into a epiphany moment at some point.

In my CTP app, I instantiated a AJAX 'Select' control and tied it to its associated HTML element by doing this:

 uiCompanySelect =new Sys.UI.Select($get('SelectCompany')); uiCompanySelect.initialize(); uiCompanySelect.set_textProperty('Name'); uiCompanySelect.set_valueProperty('ID'); uiCompanySelect.selectionChanged.add(OnSelectCompany);

Based on my reading of the white paper, I'm guessing that the equivalent code in the Beta release would look like this:

 $create(Sys.UI.Select, {}, {'selectionChanged':'OnSelectCompany'}, {}, $get('SelectCompany')); $get('SelectCompany').control.set_textProperty('Name'); $get('SelectCompany').control.set_valueProperty('ID');

But apparently I would be wrong... The first line ($create...) fails with "Sys.ArgumentUndefinedException. Value cannot be undefined. Parameter name:Type". Possibly it is complaining about one of the sets of empty braces in this statement... but I can't find any documentation for the '$create' command, or the Select control (assuming it still exists), or an example using the Select control, or the client class browser (which I really miss!).

Can anyone point out the error in my code, and/or point me towards any online reference for these things so I can figure them out?

Much thanks to any who respond!

John Bendiksen

JohnBen:

I noticed that Microsoft disabled most of my links to Atlas documentation, in particular the excellent Client Class Library Browser athttp://atlas.asp.net/docs/Client/Browser/jsBrowser.aspx that was invaluable to me in figuring out all the undocumented bits in the CTP release. So I figured I would bite the bullet and upgrade to my web app to the AJAX 1 beta... based on the 'Migration Guide' document it looked pretty painless.

Big, big mistake. It appears that the syntax of virtually every client-side AJAX call I was making has changed radically, and I can't find adequate documentation on the new syntax. I've read the white paper entitled "Changes between the ASP.NET AJAX CTP and the V1.0 Beta/RTM Release" and did not get much help from it. The excellent set of online examples for the CTP do not seem to be present for the Beta version, so I'm fishing around for help to get my app working again.

Totally agreed. I was spened many hours on reading and debuging Client FX, googling and talking with MVPs, to port old projects on "new" library.

Not so long away i found very funny phrase in download section:

While prompt migration to an ASP.NET AJAX Beta or later release is highly encouraged, this installer is provided for projects that cannot bemigrated immediately and that still require access to ASP.NET AJAX technology in its pre-Beta form.

JohnBen:

But enough whining. I'll start with my first issue and maybe I'll stumble into a epiphany moment at some point.

In my CTP app, I instantiated a AJAX 'Select' control and tied it to its associated HTML element by doing this:

 uiCompanySelect =new Sys.UI.Select($get('SelectCompany')); uiCompanySelect.initialize(); uiCompanySelect.set_textProperty('Name'); uiCompanySelect.set_valueProperty('ID'); uiCompanySelect.selectionChanged.add(OnSelectCompany);

Based on my reading of the white paper, I'm guessing that the equivalent code in the Beta release would look like this:

 $create(Sys.UI.Select, {}, {'selectionChanged':'OnSelectCompany'}, {}, $get('SelectCompany')); $get('SelectCompany').control.set_textProperty('Name'); $get('SelectCompany').control.set_valueProperty('ID');

First of all you need replace references on Sys.UI toSys.Preview.UI, then you shoud use Selector (new name of Select wrapper), so client wrapper shoud look like this:

uiCompanySelect = new

Sys.Preview.UI.Selector($get('SelectCompany'));

and now you dont need to initialize component i think.


And one more thing:

eventhandler now binds byadd_selectionChanged methodm but not by selectionChanged.add

Atlas support for IE5.01 and IE5.5

Hi all,

We have been testing Atlas on IE5.01 and IE5.5 and it does not seem to work.We get client script errors and postbacks, including on the sample pages inhttp://atlas.asp.net !!!!

The documentation states Atlas works for IE5.01 and above.

Has anyone else experience the same problems? Are there any workarounds?

Thanks,

- Rodolfo

What antivirus software are you using? Any browser settings protection software running? spyware/adware protection utilities?

I'm running Windows Defender and that's about it. I'm not sure what the other people testing are running...


Hi,I have experienced a similar problem although not with all samples. If I run the simplelist sample specifically page: "SimpleList1.aspx" then clicking on one of the tabs i.e. "completed" works in IE6 but in IE5.5 generates the javascript error"Object doesn't support this property or method". Attaching Visual Studio 2005 as a debugger VS2005 prompts me for the WebResource.axd file (WebResource.axd?d=VFwT20PF-j8gayQmUoylzzAeg-zYTMXKTTdN5x6ZoqzxB0KM1p9aEAKhOgoorbGLeUGOKjZwUEtbULZRU0Y_587HLAOAWgEiAgBufeeJqZc1&t=632799165960000000) which I can retrieve from my local web site but cannot save as it contains "?" in the filename. VS2005 unfortuantely will only accept files of type WebResource.asx?d=VFw......, i..e the file that the broswer is requesting.Does anyone know whether this is actually the issue, that is IE5.5 cannot retrieve the js file and hence the javascript error or is there some other problem? Strangley enough a simple update panel sample with a button that on click updates a label on the page works fine in IE5.5Note that I am using the standalone IE5.5 SP2 downloaded from evolt (http://browsers.evolt.org/?ie/32bit)Thanks in advance.

Wednesday, March 21, 2012

ATLAS resources

Hi,

Where can I find info (tutorials/samples/detailed documentation) about using "Atlas" Client Class Library (besides msdn and ajax.asp.net docs) ?

Thanks,

Alex.

Hi,

my blog URL is in the signature. Hope it helps.

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