Mercurial > silverbladetech
comparison SSRS/SSRS.Services.DTO/ReportInfo.cs @ 115:4de4e7829319
Working code, need to tidy up layout
author | stevenh7776 |
---|---|
date | Sun, 20 May 2012 15:50:37 +0100 |
parents | 954f66bb8dbf |
children |
comparison
equal
deleted
inserted
replaced
114:e51a6af1c98d | 115:4de4e7829319 |
---|---|
5 public class ReportInfo | 5 public class ReportInfo |
6 { | 6 { |
7 public string Name { get; set; } | 7 public string Name { get; set; } |
8 public IList<Parameter> Parameters { get; set; } | 8 public IList<Parameter> Parameters { get; set; } |
9 public string Path { get; set; } | 9 public string Path { get; set; } |
10 | |
11 public ReportInfo() { } | |
12 | 10 |
13 public static ReportInfo Create(string name, IList<Parameter> parameters, string path) | 11 public static ReportInfo Create(string name, IList<Parameter> parameters, string path) |
14 { | 12 { |
15 return new ReportInfo() | 13 return new ReportInfo() |
16 { | 14 { |