public dynamic Delete(CashBankMutation model) { try { if (!AuthenticationModel.IsAllowed("Delete", Core.Constants.Constant.MenuName.CashBankMutation, Core.Constants.Constant.MenuGroupName.Master)) { Dictionary <string, string> Errors = new Dictionary <string, string>(); Errors.Add("Generic", "You are Not Allowed to Delete Record"); return(Json(new { Errors }, JsonRequestBehavior.AllowGet)); } var data = _cashBankMutationService.GetObjectById(model.Id); model = _cashBankMutationService.SoftDeleteObject(data); } catch (Exception ex) { LOG.Error("Delete Failed", ex); Dictionary <string, string> Errors = new Dictionary <string, string>(); Errors.Add("Generic", "Error " + ex); return(Json(new { Errors }, JsonRequestBehavior.AllowGet)); } return(Json(new { model.Errors })); }
public dynamic Delete(CashBankMutation model) { try { var data = _cashBankMutationService.GetObjectById(model.Id); model = _cashBankMutationService.SoftDeleteObject(data); } catch (Exception ex) { LOG.Error("Delete Failed", ex); model.Errors.Add("Generic", "Error" + ex); } return(Json(new { model.Errors })); }