Пример #1
0
        public void load_User_insertedById()
        {
            BLL.Entity.GasStation.User entity;
            BLL.Logic.GasStation.User  logic;

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

            _User_insertedById = entity;
        }
Пример #2
0
        public void load_User_updatedById()
        {
            BLL.Entity.GasStation.User entity;
            BLL.Logic.GasStation.User  logic;

            entity = new BLL.Entity.GasStation.User()
            {
                id = updatedById.Value
            };
            logic = new BLL.Logic.GasStation.User("GasStation");
            logic.read(entity);

            _User_updatedById = entity;
        }