Esempio n. 1
0
 public WeeklyReportResponseUserGroup(List <long?> totals, long?uid, ReportResponseUserTitle title,
                                      List <WeeklyReportResponseProjectItem> details) : base(totals, uid, title)
 {
     Details = details;
 }
 public SummaryReportResponseUserSubGroup(long time, string cur, long?sum, long?rate,
                                          ReportResponseUserTitle title) : base(time, cur, sum, rate)
 {
     Title = title;
 }
Esempio n. 3
0
 public WeeklyReportResponseUserItem(List <long?> totals, long?uid, ReportResponseUserTitle title) : base(totals)
 {
     UserId = uid;
     Title  = title;
 }
 public SummaryReportResponseUserGroup(long?id, long time, List <TotalCurrency> totalCurrencies,
                                       List <T> items, ReportResponseUserTitle title) : base(id, time, totalCurrencies, items)
 {
     Title = title;
 }