Exemple #1
0
        public void load_CarOwner_carOwnerId()
        {
            BLL.Entity.GasStation.CarOwner entity;
            BLL.Logic.GasStation.CarOwner  logic;

            entity = new BLL.Entity.GasStation.CarOwner()
            {
                id = carOwnerId
            };
            logic = new BLL.Logic.GasStation.CarOwner(Common.Enum.EDatabase.GasStation);
            logic.read(entity);

            _CarOwner_carOwnerId = entity;
        }
Exemple #2
0
        public void loadCarOwner_updatedById(int pageIndex = -1, int pageSize = 100)
        {
            CommandResult opResult;

            BLL.Logic.GasStation.CarOwner logic = new BLL.Logic.GasStation.CarOwner(Common.Enum.EDatabase.GasStation);
            if (pageIndex == -1)
            {
                opResult = logic.allData("updatedById = @updatedById", "", false, true, new KeyValuePair("@updatedById", id));
            }
            else
            {
                opResult = logic.allByPaging(pageIndex, pageSize, "updatedById = @updatedById", "", false, true, new KeyValuePair("@updatedById", id));
            }

            if (opResult.status == BaseDAL.Base.EnumCommandStatus.success)
            {
                _get_CarOwner_updatedById = opResult.model as System.Data.DataTable;
            }
        }