Example #1
0
 public static int GetYear(this Telegram telegram, string prefix)
 {
     return(int.Parse(telegram.RowKey.Substring(0, 4)));
 }
Example #2
0
 public static string GetTablename(this Telegram telegram, string prefix)
 {
     return(prefix + telegram.RowKey.Substring(0, 6));
 }
Example #3
0
 public static int GetMonth(this Telegram telegram, string prefix)
 {
     return(int.Parse(telegram.RowKey.Substring(4, 2)));
 }