Exemple #1
0
        public BaseResponse DeleteRolesOfGroup(ComplexGroupRole model)
        {
            BaseResponse response = new BaseResponse();

            try
            {
                _aspNetGroupRolesRepository.DeleteMulti(x => x.GroupId == model.GroupId);
                try
                {
                    _applicationLoggingRepository.Log("EVENT", "DELETE", "AspNetGroupRoles", model.GroupId, "", "", model, "", System.Web.HttpContext.Current.Request.UserHostAddress, model.CreatedBy);
                }
                catch
                { }
            }
            catch { }
            return(response);
        }
 public BaseResponse DeleteRolesOfGroup(ComplexGroupRole model)
 {
     return(_systemService.DeleteRolesOfGroup(model));
 }