예제 #1
0
 public EMailNotify(NotifyAdmin _notify)
 {
     Notify         = _notify;
     base.Address   = _notify.Address;
     base.Content   = _notify.Content;
     base.RunResult = _notify.RunResult;
 }
예제 #2
0
 public static SMSNotify New(NotifyAdmin notify)
 {
     return(new SMSNotify(notify));
 }
예제 #3
0
 public SMSNotify(NotifyAdmin _notify)
 {
     Notify       = _notify;
     base.Address = _notify.Address;
     base.Content = _notify.Content;
 }
예제 #4
0
 public static EMailNotify New(NotifyAdmin notify)
 {
     return(new EMailNotify(notify));
 }