Example #1
0
 public AuthMessageSender(ITrackingEmailer emailer, CurrentContextServices current, TraffkTenantModelDbContext db, ITwilioSmsSender twilioSmsSender)
 {
     Emailer         = emailer;
     Current         = current;
     DB              = db;
     TwilioSmsSender = twilioSmsSender;
 }
Example #2
0
        public CommunicationBlastRunner(BlobStorageServices blobs, TraffkRdbContext rdb, ITrackingEmailer emailer)
        {
            Requires.NonNull(blobs, nameof(blobs));
            Requires.NonNull(rdb, nameof(rdb));
            Requires.NonNull(emailer, nameof(emailer));

            Blobs   = blobs;
            Rdb     = rdb;
            Emailer = emailer;
        }