Exemplo n.º 1
0
 internal void StarNotification(String conectionString, List <NotificationSqlTypes> notificationTypes, INotificationTable notificationTable)
 {
     NotificationTable = notificationTable;
     ConvertNotificationType(notificationTypes);
     using (Dependencytable = new SqlTableDependency <T>(conectionString)){
         Dependencytable.Start();
     }
 }
Exemplo n.º 2
0
 public void Start(String tableName, String conectionString, List <Enums.NotificationSqlTypes> suportEvent, INotificationTable inotificationTable)
 {
     NotificationTable = ResolveInstanceType(tableName);
     NotificationTable?.StartNotification(conectionString, suportEvent, inotificationTable);
 }
Exemplo n.º 3
0
 public void StartNotification(string conectionString, List <Enums.NotificationSqlTypes> suportEvent, INotificationTable notificationTable)
 {
     StarNotification(conectionString, suportEvent, notificationTable);
 }