public async Task <IActionResult> AddAndEditCheckListSubCategory(CheckListSubCategoryCustom data) { #region Authorization code var identity = HttpContext.User.Identity as ClaimsIdentity; string id = ""; string role = ""; if (identity != null) { IEnumerable <Claim> claims = identity.Claims; // or id = identity.Claims.Where(m => m.Type == ClaimTypes.Sid).Select(m => m.Value).FirstOrDefault(); role = identity.Claims.Where(m => m.Type == ClaimTypes.Role).Select(m => m.Value).FirstOrDefault(); } long userId = Convert.ToInt32(id); #endregion //calling CheckListSubCategoryDAL busines layer CommonResponse response = new CommonResponse(); response = checkListSubCategoryMaster.AddAndEditCheckListSubCategory(data, userId); return(Ok(response)); }
/// <summary> /// Add and Edit Document /// </summary> /// <param name="data"></param> /// <param name="userId"></param> /// <returns></returns> public CommonResponse AddAndEditCheckListSubCategory(CheckListSubCategoryCustom data, long userId = 0) { CommonResponse obj = new CommonResponse(); try { var res = db.CheckListSubCategoryMaster.Where(m => m.CheckListSubCategoryId == data.checkListSubCategoryId).FirstOrDefault(); if (res == null) { try { CheckListSubCategoryMaster item = new CheckListSubCategoryMaster(); item.CheckListSubCategoryName = data.checkListSubCategoryName; item.CheckListSubCategoryDescription = data.checkListSubCategoryDescription; item.IsActive = true; item.IsDeleted = false; item.CreatedBy = userId; item.CreatedOn = DateTime.Now; db.CheckListSubCategoryMaster.Add(item); db.SaveChanges(); obj.response = ResourceResponse.AddedSucessfully; obj.isStatus = true; } catch (Exception ex) { log.Error(ex); if (ex.InnerException != null) { log.Error(ex.InnerException.ToString()); } obj.response = ResourceResponse.ExceptionMessage; obj.isStatus = false; } } else { try { res.CheckListSubCategoryName = data.checkListSubCategoryName; res.CheckListSubCategoryDescription = data.checkListSubCategoryDescription; res.ModifiedBy = userId; res.ModifiedOn = DateTime.Now; db.SaveChanges(); obj.response = ResourceResponse.UpdatedSucessfully; obj.isStatus = true; } catch (Exception ex) { log.Error(ex); if (ex.InnerException != null) { log.Error(ex.InnerException.ToString()); } obj.response = ResourceResponse.ExceptionMessage; obj.isStatus = false; } } } catch (Exception ex) { log.Error(ex); if (ex.InnerException != null) { log.Error(ex.InnerException.ToString()); } obj.response = ResourceResponse.ExceptionMessage; obj.isStatus = false; } return(obj); }