Esempio n. 1
0
 public RawNotificationSender(WNSParameter parameter, IRawNotificationDB db) : base(db)
 {
     InitializeForSenders(parameter);
 }
Esempio n. 2
0
 public ReceiverBL(IRawNotificationDB db) : base(db)
 {
 }
Esempio n. 3
0
 public BaseServiceBL()
 {
     DB      = new RawNotificationDB();
     _Logger = log4net.LogManager.GetLogger(this.GetType().Name);
 }
Esempio n. 4
0
 public BaseServiceBL(IRawNotificationDB db)
 {
     DB      = db;
     _Logger = log4net.LogManager.GetLogger(this.GetType().Name);
 }
Esempio n. 5
0
 public NotificationBL(IRawNotificationDB db) : base(db)
 {
 }
Esempio n. 6
0
 public DeviceBL(IRawNotificationDB db) : base(db)
 {
 }