Пример #1
0
        public Dictionary <string, object> KullaniciOdemesiGetir(int kullaniciID)
        {
            Dictionary <string, object> kullaniciOdeme = new Dictionary <string, object>();

            if (_kullaniciDAL.KullaniciGetir(kullaniciID) != null)
            {
                kullaniciOdeme = _kullaniciDAL.KullaniciOdemesiGetir(kullaniciID);
                return(kullaniciOdeme);
            }
            else
            {
                throw new Exception("Kullanıcı sistemde kayıtlı değildir.");
            }
        }