or
public
class
DepositWidgetDto
{
public
DepositWidgetDto()
{
Accounts =
new
List<
string
>();
}
public
Guid Id {
get
;
set
; }
public
string
Number {
get
;
set
; }
public
List<
string
> SealsCodes {
get
;
set
; }
public
int
NonRecognized {
get
;
set
; }
public
List<CashDto> Cash {
get
;
set
; }
public
List<EnvelopeDto> Envelopes {
get
;
set
; }
public
List<UnVerifiedDto> UnVerified {
get
;
set
; }
public
List<
string
> Accounts {
get
;
set
; }
}
Protected
Sub
Page_Load(
ByVal
sender
As
Object
,
ByVal
e
As
System.EventArgs)
Handles
Me
.Load
Try
If
Not
IsPostBack
Then
Dim
uriReportSource
As
New
Telerik.Reporting.UriReportSource()
Dim
r
As
reportObj = daoFactory.GetreportObjDao.GetById(
New
Guid(Request.QueryString(
"ID"
)),
False
)
Dim
path
As
String
= System.Web.HttpRuntime.AppDomainAppPath +
"Temp\"
path += ClientID.ToString() +
"\"
+ r.FileName
uriReportSource.Uri = path
Me
.trv.ReportSource = uriReportSource
End
If
Catch
ex
As
Exception
error(ex)
End
Try
End
Sub
<
DataSources
>
<
SqlDataSource
ConnectionString
=
"hippo"
SelectCommand
=
"select top 1 fl.license, f.*, a.* from t_facility_license fl inner join t_facility f on f.facilitylicenseguid = fl.facilitylicenseguid outer apply ( select top 1 * from t_address where foreignkeyguid = f.facilityguid and addresstype = 'Physical' ) a where fl.facilitylicenseguid = @FacilityLicenseGuid order by f.createdate"
Name
=
"FacilityLicense"
>
</
SqlDataSource
>
</
DataSources
>