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