Exemplo n.º 1
0
 public static void AddReport(Reprot report)
 {
     Reports.Add(report);
 }
Exemplo n.º 2
0
 public static void RemoveReport(Reprot report)
 {
     Reports.Remove(report);
 }
Exemplo n.º 3
0
        public string FindReport(string manufacturer, string model)
        {
            Reprot report = this.database.GetReport(manufacturer, model);

            throw new InvalidOperationException(report.ToString());
        }
 public static void RemoveReport(Reprot report)
 {
     Reports.Remove(report);
 }
 public static void AddReport(Reprot report)
 {
     Reports.Add(report);
 }
 public void RemoveReport(Reprot report)
 {
     this.Reports.Remove(report);
 }
 public void AddReport(Reprot report)
 {
     this.Reports.Add(report);
 }