Mercurial > silverbladetech
annotate SSRS/SSRS.Services.DTO/ReportInfo.cs @ 120:48c389520e5d
initial commit
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 14:12:43 +0100 |
parents | 4de4e7829319 |
children |
rev | line source |
---|---|
113 | 1 using System.Collections.Generic; |
2 | |
3 namespace SSRS.Services.DTO | |
4 { | |
5 public class ReportInfo | |
6 { | |
7 public string Name { get; set; } | |
8 public IList<Parameter> Parameters { get; set; } | |
9 public string Path { get; set; } | |
10 | |
11 public static ReportInfo Create(string name, IList<Parameter> parameters, string path) | |
12 { | |
13 return new ReportInfo() | |
14 { | |
15 Name = name, | |
16 Parameters = parameters, | |
17 Path = path | |
18 }; | |
19 } | |
20 } | |
21 } |