// 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)); }
public RechteGruppe Map_DeleteRechteGruppeViewModel_RechteGruppe(DeleteRechteGruppeViewModel deleteRechteGruppeViewModel) { return(Mapper.Map <RechteGruppe>(deleteRechteGruppeViewModel)); }