public ActionResult ForNewRallyRollsheet(int orgid)
 {
     var oi = new SettingsAttendanceModel { Id = orgid };
     var m = new NewMeetingInfo()
     {
         MeetingDate =  oi.NextMeetingDate,
         Schedule = new CodeInfo(0, oi.SchedulesNext()),
         AttendCredit = new CodeInfo(0, oi.AttendCreditList()),
     };
     ViewBag.Action = "/Reports/RallyRollsheetForOrg/" + orgid;
     ViewBag.Method = "POST";
     return View("MeetingInfo", m);
 }
Esempio n. 2
0
 public ActionResult ForNewMeeting(int orgid)
 {
     var oi = new SettingsAttendanceModel() { Id = orgid };
     var m = new NewMeetingInfo()
     {
         MeetingDate = oi.PrevMeetingDate,
         Schedule = new CodeInfo(0, oi.SchedulesPrev()),
         AttendCredit = new CodeInfo(0, oi.AttendCreditList()),
     };
     ViewBag.Action = "/CreateNewMeeting/";
     ViewBag.Method = "POST";
     return View("MeetingInfo", m);
 }