Пример #1
0
 public void AddToReportSchoolViews(ReportSchoolView reportSchoolView)
 {
     base.AddObject("ReportSchoolViews", reportSchoolView);
 }
Пример #2
0
 public static ReportSchoolView CreateReportSchoolView(int activityId, int schoolPartId, int totalNumberOfClasses, int totalNumberOfCounselor, int totalNumberOfRounds, global::System.DateTime activityDate, int districtId, int numberOfAssigedCounselor, bool isMissingCounselors, global::System.DateTime startTime, global::System.DateTime endTime)
 {
     ReportSchoolView reportSchoolView = new ReportSchoolView();
     reportSchoolView.ActivityId = activityId;
     reportSchoolView.SchoolPartId = schoolPartId;
     reportSchoolView.TotalNumberOfClasses = totalNumberOfClasses;
     reportSchoolView.TotalNumberOfCounselor = totalNumberOfCounselor;
     reportSchoolView.TotalNumberOfRounds = totalNumberOfRounds;
     reportSchoolView.ActivityDate = activityDate;
     reportSchoolView.DistrictId = districtId;
     reportSchoolView.NumberOfAssigedCounselor = numberOfAssigedCounselor;
     reportSchoolView.IsMissingCounselors = isMissingCounselors;
     reportSchoolView.StartTime = startTime;
     reportSchoolView.EndTime = endTime;
     return reportSchoolView;
 }