public Opgave(string beskrivelse, StatusType status, int ventetid)
 {
     Beskrivelse   = beskrivelse;
     Status        = status;
     VentetidIDage = ventetid;
     Udstyr        = new Udstyr();
 }
 public Opgave(int id, string beskrivelse, StatusType status, int ventetid, Udstyr udstyr)
 {
     ID            = id;
     Beskrivelse   = beskrivelse;
     Status        = status;
     Udstyr        = udstyr;
     VentetidIDage = ventetid;
 }
 //Copy constructor
 public Udstyr(Udstyr udstyr)
 {
     UdstyrId          = udstyr.UdstyrId;
     Installationsdato = udstyr.Installationsdato;
     Beskrivelse       = udstyr.Beskrivelse;
     Type        = udstyr.Type;
     Station     = udstyr.Station;
     OpgaveListe = udstyr.OpgaveListe;
 }
        public Opgave(Opgave opgave)
        {
            ID            = opgave.ID;
            Beskrivelse   = opgave.Beskrivelse;
            Status        = opgave.Status;
            VentetidIDage = opgave.VentetidIDage;

            if (opgave.Udstyr == null)
            {
                Udstyr = new Udstyr();
            }
            else
            {
                Udstyr = opgave.Udstyr;
            }
        }
 public Opgave()
 {
     Udstyr = new Udstyr();
 }