20 lines
430 B
C#
Executable File
20 lines
430 B
C#
Executable File
|
|
namespace MarketData.Generator.Momentum
|
|
{
|
|
public class SMSNotifications : Dictionary<String,SMSNotification>
|
|
{
|
|
}
|
|
public class SMSNotification
|
|
{
|
|
public SMSNotification()
|
|
{
|
|
}
|
|
public DateTime NotificationTime{get;set;}
|
|
public int ElapsedTimeMinutes(DateTime currentTime)
|
|
{
|
|
TimeSpan elapsedTime=currentTime-NotificationTime;
|
|
return elapsedTime.Minutes;
|
|
}
|
|
}
|
|
}
|