Ejemplo n.º 1
0
        public void Delete()
        {
            BolaoNet.Business.DadosBasicos.Support.Estadio entry = new BolaoNet.Business.DadosBasicos.Support.Estadio(
                Constants.CurrentUser, _daoBase,
                BolaoNet.Tests.Dao.Estadio.EntryToDelete);

            base.Delete(entry, BolaoNet.Tests.Dao.Estadio.QueryToCompareDelete);
        }
Ejemplo n.º 2
0
        public void Insert()
        {
            BolaoNet.Business.DadosBasicos.Support.Estadio entry = new BolaoNet.Business.DadosBasicos.Support.Estadio(
                Constants.CurrentUser, _daoBase,
                BolaoNet.Tests.Dao.Estadio.EntryToInsert);

            base.Insert(entry, BolaoNet.Tests.Dao.Estadio.QueryToCompareInsert);
        }
Ejemplo n.º 3
0
        public void Load()
        {
            BolaoNet.Business.DadosBasicos.Support.Estadio entry = new BolaoNet.Business.DadosBasicos.Support.Estadio(
                Constants.CurrentUser, _daoBase,
                BolaoNet.Tests.Dao.Estadio.EntryToLoad);

            base.Load(entry);
        }
Ejemplo n.º 4
0
        public void SelectCombo()
        {
            BolaoNet.Business.DadosBasicos.Support.Estadio entry = new BolaoNet.Business.DadosBasicos.Support.Estadio(
                Constants.CurrentUser, _daoBase);

            base.SelectCombo(entry,
                             BolaoNet.Tests.Dao.Estadio.QueryToCompareSelectCombo);
        }
Ejemplo n.º 5
0
        public void Update()
        {
            BolaoNet.Business.DadosBasicos.Support.Estadio entry = new BolaoNet.Business.DadosBasicos.Support.Estadio(
                Constants.CurrentUser, _daoBase,
                BolaoNet.Tests.Dao.Estadio.EntryToUpdate);

            entry.Descricao = "Testando";

            base.Update(entry, BolaoNet.Tests.Dao.Estadio.QueryToCompareUpdate);
        }