public static Int32 DeleteGroup(Int32 groupId)
        {
            GroupDSTableAdapter ta = new GroupDSTableAdapter();

            ta.Connection.ConnectionString = UcConnection.ConnectionString;
            return(ta.Delete(groupId));
        }