Exemplo n.º 1
0
        public int UpdateGridInfoById(ServGridInfoModel model)
        {
            int result = mapContext.Update("UpdateGridInfo", model);

            return(result);
        }
Exemplo n.º 2
0
 public bool UpdateEntity(int id, ServGridInfoModel newentity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
        public int AddEntity(ServGridInfoModel entity)
        {
            int id = (int)mapContext.Insert("InsertGridInfo", entity);

            return(id);
        }