/// <summary>
 /// Constructs a search blessings criteria object
 /// </summary>
 /// <param name="blessingTypeModelId">The type of blessing</param>
 /// <param name="statusType">The status of the blessing</param>
 public SearchBlessingsCriteria(ModelId <BlessingType> blessingTypeModelId, BlessingStatusType statusType)
 {
     BlessingTypeModelId = blessingTypeModelId;
     StatusType          = statusType;
 }
Пример #2
0
 /// <summary>
 /// Constructs a creation blessing info object
 /// </summary>
 /// <param name="blessingTypeModelId">The type of blessing</param>
 /// <param name="notes">Any additional notes related to the execution of the blessing</param>
 /// <param name="statusType">The status of the blessing</param>
 public CreateBlessingInfo(ModelId <BlessingType> blessingTypeModelId, string notes, BlessingStatusType statusType)
 {
     BlessingTypeModelId = blessingTypeModelId;
     Notes      = notes;
     StatusType = statusType;
 }