protected static void AddGroup(Guid groupId, string name)
        {
            using (DbContext writeDbContext = new DbContext())
            {
                Group group = new Group
                {
                    Id = groupId,
                    Name = name,
                };

                writeDbContext.Groups.Add(group);
                writeDbContext.SaveChanges();
            }
        }