コード例 #1
0
        public void UpdateEvent(int id, string NewEventStart, string NewEventEnd)
        {
            //find the pn with the id
            PartnershipNight pn = pnRepo.GetPartnershipNightById(id);

            pn.StartDate = DateTime.Parse(NewEventStart);
            pn.EndDate   = DateTime.Parse(NewEventEnd);
            pnRepo.UpdatePartnershipNight(pn);
        }