예제 #1
0
        public bool DeleteRoleGroup(int id)
        {
            var script = string.Format("DELETE FROM [RoleGroup] WHERE Id = {0}", id);

            _dbConnector.ExecuteCommand(new SqlCommand(script));

            DataStorageService.DeleteRoleGroupRole(id);

            return(true);
        }