示例#1
0
        public IActionResult GrupDetay(int id)
        {
            var result = KullaniciGrup.Detay(id);

            if (result == null || result.Id <= 0)
            {
                return(View("NotFound"));
            }

            return(View("GrupDetay", result));
        }
示例#2
0
 public IActionResult Gruplar()
 {
     return(View(KullaniciGrup.Listesi()));
 }
示例#3
0
 public IActionResult GrupGuncelle(KullaniciGrup param)
 {
     return(Content(AppResponse.Return(KullaniciGrup.Guncelle(param))));
 }
示例#4
0
 public IActionResult GrupOlustur(KullaniciGrup param)
 {
     return(Content(AppResponse.Return(KullaniciGrup.Olustur(param))));
 }