Exemple #1
0
 /// <summary>
 /// Revises the type of the event.
 /// </summary>
 /// <param name="staffEventType">Type of the staff event.</param>
 public virtual void ReviseEventType(StaffEventType staffEventType)
 {
     StaffEventType = staffEventType;
 }
Exemple #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="StaffEvent"/> class.
        /// </summary>
        /// <param name="staffEventType">Type of the staff event.</param>
        protected internal StaffEvent(StaffEventType staffEventType)
        {
            Check.IsNotNull(staffEventType, "Staff Event Type cannot be null");

            _staffEventType = staffEventType;
        }
Exemple #3
0
        /// <summary>
        /// Initializes a new instance of the <see cref="StaffEvent"/> class.
        /// </summary>
        /// <param name="staffEventType">Type of the staff event.</param>
        protected internal StaffEvent(StaffEventType staffEventType)
        {
            Check.IsNotNull(staffEventType, "Staff Event Type cannot be null");

            _staffEventType = staffEventType;
        }
Exemple #4
0
 /// <summary>
 /// Revises the type of the event.
 /// </summary>
 /// <param name="staffEventType">Type of the staff event.</param>
 public virtual void ReviseEventType(StaffEventType staffEventType)
 {
     StaffEventType = staffEventType;
 }