示例#1
0
 public void GetPagedAsync(Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto, object userState)
 {
     if ((this.onBeginGetPagedDelegate == null))
     {
         this.onBeginGetPagedDelegate = new BeginOperationDelegate(this.OnBeginGetPaged);
     }
     if ((this.onEndGetPagedDelegate == null))
     {
         this.onEndGetPagedDelegate = new EndOperationDelegate(this.OnEndGetPaged);
     }
     if ((this.onGetPagedCompletedDelegate == null))
     {
         this.onGetPagedCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPagedCompleted);
     }
     base.InvokeAsync(this.onBeginGetPagedDelegate, new object[] {
         specificationDto
     }, this.onEndGetPagedDelegate, this.onGetPagedCompletedDelegate, userState);
 }
示例#2
0
 public System.IAsyncResult BeginGetPaged(Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetPaged(specificationDto, callback, asyncState));
 }
示例#3
0
 public Inflexion2.Domain.PagedElementsOfPersonaDto2J3PpTFv GetPaged(Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto)
 {
     return(base.Channel.GetPaged(specificationDto));
 }
示例#4
0
 public void GetPagedAsync(Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto)
 {
     this.GetPagedAsync(specificationDto, null);
 }
示例#5
0
 private System.IAsyncResult OnBeginGetPaged(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto = ((Inflexion2.Application.DataTransfer.Core.SpecificationDto)(inValues[0]));
     return(this.BeginGetPaged(specificationDto, callback, asyncState));
 }
示例#6
0
 public Inflexion2.Domain.PagedElements <Atento.Suite.Shared.Application.Dtos.CategoriaDto> GetPaged(Inflexion2.Application.DataTransfer.Core.SpecificationDto specificationDto)
 {
     return(base.Channel.GetPaged(specificationDto));
 }