Example #1
0
 public TransferPaginacao(TransferPaginacao transfer)
 {
     if (transfer != null)
     {
         this.PaginaAtual        = transfer.PaginaAtual;
         this.PaginaInicial      = transfer.PaginaInicial;
         this.PaginaFinal        = transfer.PaginaFinal;
         this.RegistrosPorPagina = transfer.RegistrosPorPagina;
         this.TotalRegistros     = transfer.TotalRegistros;
         this.TotalPaginas       = transfer.TotalPaginas;
     }
 }
Example #2
0
 public TransferBase(TransferBase transfer) : base(transfer)
 {
     if (transfer != null)
     {
         if (transfer.Filtro != null)
         {
             this.Filtro = new TransferFiltro(transfer.Filtro);
         }
         if (transfer.Paginacao != null)
         {
             this.Paginacao = new TransferPaginacao(transfer.Paginacao);
         }
     }
 }
Example #3
0
 public TransferBase() : base()
 {
     this.Filtro    = new TransferFiltro();
     this.Paginacao = new TransferPaginacao();
 }