예제 #1
0
 public PaymentLevelAdded(
     Guid id,
     string code,
     string name,
     Guid brandId,
     string currencyCode,
     Data.PaymentLevelStatus status,
     string createdBy,
     DateTimeOffset createdDate)
 {
     Id           = id;
     Code         = code;
     Name         = name;
     BrandId      = brandId;
     CurrencyCode = currencyCode;
     Status       = status;
     CreatedBy    = createdBy;
     CreatedDate  = createdDate;
 }
예제 #2
0
 public PaymentLevelEdited(
     Guid id,
     string code,
     string name,
     Guid brandId,
     string currencyCode,
     Data.PaymentLevelStatus status,
     string updatedBy,
     DateTimeOffset updatedDate)
 {
     Id           = id;
     Code         = code;
     Name         = name;
     BrandId      = brandId;
     CurrencyCode = currencyCode;
     Status       = status;
     UpdatedBy    = updatedBy;
     UpdatedDate  = updatedDate;
 }