Esempio n. 1
0
 public Notification(NotificationsType type, NotificationsGroup group, string name, string content)
 {
     Type  = type;
     Group = group;
     Name  = name;
     NotificationContent = content;
 }
 public InSourceViewController()
 {
     _projectRequests    = new List <ProjectRequest>();
     _hasTemplateList    = new List <bool>();
     _hasFiles           = new List <bool>();
     _notificationGroup  = new NotificationsGroup(Guid.NewGuid());
     _foldersRequestPath = new List <string>();
 }
Esempio n. 3
0
 public Notification(NotificationsType type, string domain, NotificationsGroup group, string name, string content)
 {
     Type   = type;
     Group  = group;
     Domain = domain;
     Name   = name;
     NotificationContent   = content;
     NotificationEpochTime = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
 }
Esempio n. 4
0
 public Notification(NotificationsType type, NotificationsGroup group, string name, string content)
 {
     Type  = type;
     Group = group;
     Name  = name;
     NotificationContent   = content;
     NotificationEpochTime = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
     //NotificationTime = DateTime.Now.ToString("dd/MM/y hh:mm tt");
 }