private bool KullaniciKontrol(string FirmaID, string KullaniciAdi, string Sifre) { ConnectionInformation information = new ConnectionInformation(); string result = information.KullaniciGirisKontrol(FirmaID, KullaniciAdi, Sifre); if (result == "GirisBasarili") { MessageBox.Show("Giriş İşlemi Başarılı."); return(true); } else { MessageBox.Show("Giriş İşlemi Başarısız."); return(false); } }