29 lines
646 B
C#
29 lines
646 B
C#
using KlassenBIB;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SanSystem
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public partial class FrmKalibrierungFestlegung : Form
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public FrmKalibrierungFestlegung(List<Inspektionsobjekt> inspektionsobjekts)
|
|
{
|
|
InitializeComponent();
|
|
ucLinerGrundlagen1.inspektionsobjekts = inspektionsobjekts;
|
|
}
|
|
}
|
|
}
|