Beispiel #1
0
 public OrderConfirmationNotificationBuilder(string email, IEnumerable <OrderInfoDto> orders, NotificationTemplateData template)
 {
     ArgumentValidator.IsNotNull("orders", orders);
     Orders    = orders;
     UserEmail = email;
     Template  = template;
 }
 public ContactUsNotificationBuilder(ContactUsInfoDto contactUsInfo, NotificationTemplateData template)
 {
     ContactUsInfo = contactUsInfo;
     Template      = template;
 }
Beispiel #3
0
 public QuoteCreationNotificationBuilder(QuoteInfoDto quote, NotificationTemplateData template)
 {
     Quote    = quote;
     Template = template;
 }