public AutoLotInventory()
 {
     InitializeComponent();
      SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder
      {
     DataSource = @"(Local)\SQLEXPRESS",
     IntegratedSecurity = true,
     InitialCatalog = "AutoLot"
      };
      autoLot = new AutoLotDisconnectedLayer( builder.ConnectionString );
      inventoryDG.DataSource = autoLot.GetAllInventory();
 }
 public LinqOverDataSet()
 {
     var builder = new SqlConnectionStringBuilder
      {
     DataSource = @"(local)\SQLEXPRESS",
     InitialCatalog = "AutoLot",
     IntegratedSecurity = true
      };
      var layer = new AutoLotDisconnectedLayer( builder.ConnectionString );
      DataTable data = layer.GetAllInventory();
      PrintCarIDs( data );
      ApplyLinqQuery( data );
      HydrateTable( data );
 }