本文整理汇总了C#中Report.GetTypeCode方法的典型用法代码示例。如果您正苦于以下问题:C# Report.GetTypeCode方法的具体用法?C# Report.GetTypeCode怎么用?C# Report.GetTypeCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Report
的用法示例。
在下文中一共展示了Report.GetTypeCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Distribution
internal Distribution(User Owner , Report report , Contact contact, Report.ExportFormat format)
{
_owner=Owner;
this.Report=report;
this.Contact=contact;
this.Format=format;
FI.Common.DataAccess.IDistributionsDA dacObj=DataAccessFactory.Instance.GetDistributionsDA();
_id=dacObj.InsertDistribution(_owner.ID, report.ID , contact.ID , report.GetTypeCode() , this.FrequencyType.ToString() , this.FrequencyValue.ToString(), (int)this.Format);
_isProxy=false;
_isDirty=false;
}
示例2: DeleteDistributions
public void DeleteDistributions(Report report)
{
FI.Common.DataAccess.IDistributionsDA dacObj=DataAccessFactory.Instance.GetDistributionsDA();
dacObj.DeleteDistributionsByReport(report.ID , report.GetTypeCode());
}
示例3: GetDistributionsWithContactsPage
public FI.Common.Data.FIDataTable GetDistributionsWithContactsPage(Report report, int CurrentPage , int RowCount , string FilterExpression , string SortExpression)
{
int StartIndex=(CurrentPage-1)*RowCount;
FI.Common.DataAccess.IDistributionsDA dacObj=DataAccessFactory.Instance.GetDistributionsDA();
FI.Common.Data.FIDataTable table=new FI.Common.Data.FIDataTable();
table=dacObj.ReadDistributionsWithContactsPage(_owner.ID, report.ID , report.GetTypeCode() , StartIndex , RowCount , FilterExpression , SortExpression);
ConvertEnums(ref table);
return table;
}