/*
  * public static bool ForumYöneticisi(this Kullanıcı Kullanıcı, bool sadeceAktifKullanıcıRolleri = true)
  * {
  *  return KullanıcıRolünde(Kullanıcı, SistemKullanıcıRolAdları.ForumYönetici, sadeceAktifKullanıcıRolleri);
  * }*/
 public static bool IsRegistered(this Kullanıcı Kullanıcı, bool sadeceAktifKullanıcıRolleri = true)
 {
     return(KullanıcıRolünde(Kullanıcı, SistemKullanıcıRolAdları.Kayıtlı, sadeceAktifKullanıcıRolleri));
 }
 public static bool IsGuest(this Kullanıcı Kullanıcı, bool sadeceAktifKullanıcıRolleri = true)
 {
     return(KullanıcıRolünde(Kullanıcı, SistemKullanıcıRolAdları.Ziyaretçi, sadeceAktifKullanıcıRolleri));
 }
 public static bool Yönetici(this Kullanıcı Kullanıcı, bool sadeceAktifKullanıcıRolleri = true)
 {
     return(KullanıcıRolünde(Kullanıcı, SistemKullanıcıRolAdları.Yönetici, sadeceAktifKullanıcıRolleri));
 }