예제 #1
0
        // GET: RechteGruppe/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            DeleteRechteGruppeViewModel deleteRechteGruppeViewModel =
                RechteGruppeViewModelService.Map_RechteGruppe_DeleteRechteGruppeViewModel(RechteGruppeService.SearchRightGroupById(Convert.ToInt32(id)));

            if (deleteRechteGruppeViewModel == null)
            {
                return(HttpNotFound());
            }
            return(View(deleteRechteGruppeViewModel));
        }
예제 #2
0
 public RechteGruppe Map_DeleteRechteGruppeViewModel_RechteGruppe(DeleteRechteGruppeViewModel deleteRechteGruppeViewModel)
 {
     return(Mapper.Map <RechteGruppe>(deleteRechteGruppeViewModel));
 }