コード例 #1
0
        public Alteration(int customerId, SuitType suitType, ShortenValue rightShortenValue, ShortenValue leftShortenValue)
        {
            CustomerId        = customerId;
            SuitType          = suitType;
            AlterationStatus  = AlterationStatus.Created;
            RightShortenValue = rightShortenValue;
            LeftShortenValue  = leftShortenValue;

            Validate();
        }
コード例 #2
0
 public Alteration(Guid id, int customerId, SuitType suitType, ShortenValue rightShortenValue, ShortenValue leftShortenValue)
     : this(customerId, suitType, rightShortenValue, leftShortenValue)
 {
     base.Id = id;
 }