예제 #1
0
 public PageDTO(Int32 idPage, String descPage, String url, String appName, ITPageDTO tPage)
 {
     this.IdPage   = idPage;
     this.DescPage = descPage;
     this.Url      = url;
     this.AppName  = appName;
     this.TPage    = tPage;
 }
예제 #2
0
 public ITPagePTO DTOtoPTO(ITPageDTO tPage)
 {
     return(tPage != null ? new TPagePTO(tPage.IdTPage, tPage.DescTPage) : null);
 }