| 123456789101112131415161718192021222324252627282930313233343536373839404142 | using System;using System.Collections.Generic;using System.Text;namespace Comal.Classes{    public enum StockMovementType    {        /// <summary>        /// Stock is being received into the system.        /// </summary>        /// <remarks>        /// <see cref="StockMovement.Received"/> should not be zero.        /// </remarks>        Receive,        /// <summary>        /// Stock is being issued out of the system.        /// </summary>        /// <remarks>        /// <see cref="StockMovement.Issued"/> should not be zero.        /// </remarks>        Issue,        /// <summary>        /// Stock is being transferred out of this holding to another.        /// </summary>        /// <remarks>        /// <see cref="StockMovement.Issued"/> should not be zero.        /// </remarks>        TransferOut,        /// <summary>        /// Stock is being transferred into this holding from another.        /// </summary>        /// <remarks>        /// <see cref="StockMovement.Received"/> should not be zero.        /// </remarks>        TransferIn,        /// <summary>        /// Stock is being updated based on a stocktake.        /// </summary>        StockTake    }}
 |