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


            entity.Name = "Test Test ";

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

                object result = manager.Save(entity);

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

                rt.fias.model.fias.ActualStatus entityB = manager.GetById(entityA.Id);

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

                rt.fias.model.fias.ActualStatus entity = GetFirstActualStatus();

                manager.Delete(entity);

                entity = manager.GetById(entity.Id);
                Assert.IsNull(entity);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }
        public void Update()
        {
            try
            {
                rt.fias.model.fias.ActualStatus entityC = CreateNew();
                manager.Save(entityC);
                manager.Session.GetISession().Flush();
                manager.Session.GetISession().Clear();

                rt.fias.model.fias.ActualStatus entityA = GetFirstActualStatus();

                entityA.Name = "Test Test ";

                manager.Update(entityA);

                rt.fias.model.fias.ActualStatus entityB = manager.GetById(entityA.Id);

                Assert.AreEqual(entityA.Name, entityB.Name);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }