Ejemplo n.º 1
0
 public static bool IsNotifiedBittrix(long userId, string name, TypeNotice type)
 {
     return(_noticesBittrix.Any(x => x.Name == name && x.UserId == userId && x.Type == type));
 }
Ejemplo n.º 2
0
 public static bool IsNotifiedCoinMarket(long userId, string name, TypeNotice type)
 {
     return(_noticesCoinMarket.Any(x => x.Name == name && x.UserId == userId && x.Type == type));
 }
Ejemplo n.º 3
0
 public Notice(long uerdId, string name, TypeNotice type)
 {
     UserId = uerdId;
     Name   = name;
     Type   = type;
 }