/// <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;
        }
Exemple #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;
        }
 /// <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;
 }
Exemple #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;
 }