public Message(string MessageText, DateTime SendDate, string Tittle, Costumer User)
 {
     this.MessageText = MessageText;
     this.SendDate = SendDate;
     this.Tittle = Tittle;
     this.User = User;
 }
Example #2
0
 public void RegisterDevice(Costumer cos)
 {
 }
Example #3
0
 public Accident ViewAccident(Costumer costumer, DateTime theDate)
 {
     throw new NotImplementedException();
 }
Example #4
0
 //constructor #1
 public Device(int deviceNumber, Costumer owner)
 {
     this.DeviceNumber = deviceNumber;
     this.Owner = owner;
 }