Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="StaffChecklistItem"/> class.
        /// </summary>
        /// <param name="staffChecklistItemType">Type of the staff checklist item.</param>
        protected internal StaffChecklistItem(StaffChecklistItemType staffChecklistItemType)
        {
            Check.IsNotNull(staffChecklistItemType, () => StaffChecklistItemType);

            _staffChecklistItemType = staffChecklistItemType;
            _checkedIndicator = false;
        }
Esempio n. 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="StaffChecklistItem"/> class.
        /// </summary>
        /// <param name="staffChecklistItemType">Type of the staff checklist item.</param>
        protected internal StaffChecklistItem(StaffChecklistItemType staffChecklistItemType)
        {
            Check.IsNotNull(staffChecklistItemType, () => StaffChecklistItemType);

            _staffChecklistItemType = staffChecklistItemType;
            _checkedIndicator       = false;
        }
Esempio n. 3
0
 /// <summary>
 /// Revises the type of the checklist item.
 /// </summary>
 /// <param name="staffChecklistItemType">Type of the staff checklist item.</param>
 public virtual void ReviseChecklistItemType(StaffChecklistItemType staffChecklistItemType)
 {
     StaffChecklistItemType = staffChecklistItemType;
 }
Esempio n. 4
0
 /// <summary>
 /// Revises the type of the checklist item.
 /// </summary>
 /// <param name="staffChecklistItemType">Type of the staff checklist item.</param>
 public virtual void ReviseChecklistItemType(StaffChecklistItemType staffChecklistItemType)
 {
     StaffChecklistItemType = staffChecklistItemType;
 }