public static Int32 InsertGroup(string groupName)
        {
            GroupDSTableAdapter ta = new GroupDSTableAdapter();

            ta.Connection.ConnectionString = UcConnection.ConnectionString;
            return(Convert.ToInt32(ta.InsertGroup(groupName)));
        }