// GET: Home
        public ActionResult Index()
        {
            List <rOzellikler> lst = OzelliklerDAL.Listele();

            if (lst != null)
            {
                return(View(lst));
            }

            return(View());
        }
Example #2
0
 public static List <rOzellikler> Listele()
 {
     try
     {
         return(OzelliklerDAL.Listele());
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #3
0
        // GET: Home
        public ActionResult Index()
        {
            List <rOzellikler> lst = OzelliklerDAL.Listele();

            return(View(lst));
        }