コード例 #1
0
        public void ChangeCalendarEntryDescription(string tenantId, string calendarEntryId, string description)
        {
            var calendarEntry = _calendarEntryRepository.Get(new Tenant(tenantId), new CalendarEntryId(calendarEntryId));

            calendarEntry.ChangeDescription(description);

            _calendarEntryRepository.Save(calendarEntry);
        }