示例#1
0
        public ActionResult PersonelDetails(int Id, string username = "")
        {
            if (username != null)
            {
                Id = _users.PersonelGetUsername(username);
            }

            PersonelModel model = _users.PersonelDetails(Id);

            ViewBag.ilce = _film.IlceDetails(model.Ilce).IlceAdi;
            return(View(model));
        }
示例#2
0
 public ActionResult IlceDuzenle(int Id)
 {
     return(View(_film.IlceDetails(Id)));
 }