public static UserGroupRole CreateNew(int depth = 0)
        {
            rt.core.model.core.UserGroupRole entity = new rt.core.model.core.UserGroupRole();

            // You may need to maually enter this key if there is a constraint violation.
            entity.Id = System.Guid.NewGuid();


            using (rt.core.business.manager.IGroupManager groupManager = ObjectFactory.GetInstance <IGroupManager>())
            {
                entity.Group = null;
            }

            using (rt.core.business.manager.IRoleManager roleManager = ObjectFactory.GetInstance <IRoleManager>())
            {
                entity.Role = null;
            }

            using (rt.core.business.manager.IUserManager userManager = ObjectFactory.GetInstance <IUserManager>())
            {
                entity.User = null;
            }

            return(entity);
        }
        public void Create()
        {
            try
            {
                rt.core.model.core.UserGroupRole entity = CreateNew();

                object result = manager.Save(entity);

                Assert.IsNotNull(result);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }
        public void Read()
        {
            try
            {
                rt.core.model.core.UserGroupRole entityA = CreateNew();
                manager.Save(entityA);

                rt.core.model.core.UserGroupRole entityB = manager.GetById(entityA.Id);

                Assert.AreEqual(entityA, entityB);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }
        public void Delete()
        {
            try
            {
                rt.core.model.core.UserGroupRole entityC = CreateNew();
                manager.Save(entityC);
                manager.Session.GetISession().Flush();
                manager.Session.GetISession().Clear();

                rt.core.model.core.UserGroupRole entity = GetFirstUserGroupRole();

                manager.Delete(entity);

                entity = manager.GetById(entity.Id);
                Assert.IsNull(entity);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }