Exemplo n.º 1
0
        public static CurrentStatus CreateNew(int depth = 0)
        {
            rt.fias.model.fias.CurrentStatus entity = new rt.fias.model.fias.CurrentStatus();


            entity.Name = "Test Test ";

            return(entity);
        }
Exemplo n.º 2
0
        public void Create()
        {
            try
            {
                rt.fias.model.fias.CurrentStatus entity = CreateNew();

                object result = manager.Save(entity);

                Assert.IsNotNull(result);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }
Exemplo n.º 3
0
        public void Read()
        {
            try
            {
                rt.fias.model.fias.CurrentStatus entityA = CreateNew();
                manager.Save(entityA);

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

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

                rt.fias.model.fias.CurrentStatus entity = GetFirstCurrentStatus();

                manager.Delete(entity);

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

                rt.fias.model.fias.CurrentStatus entityA = GetFirstCurrentStatus();

                entityA.Name = "Test Test ";

                manager.Update(entityA);

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

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