Class oluşturma Kontrol için : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Araç_Bakım_Takip { internal class boslukVar { public static bool Kontrol(params string[] alanlar) { foreach (string alan in alanlar) { if (string.IsNullOrWhiteSpace(alan)) { return true; } } return false; } } } ************...