Exemple #1
0
        public Kullanici Giris(string kullaniciAdi, string parola)
        {
            Kullanici kullanici = null;

            try
            {
                using (var repo = new KullaniciRepository())
                {
                    kullanici = repo.Giris(kullaniciAdi, parola);
                }
                return(kullanici);
            }
            catch (Exception)
            {
                throw;
            }
        }