Пример #1
0
        public Speciallinetype Find(Int64 id)
        {
            String          stmtId = "Speciallinetype.Find";
            Speciallinetype result = this.sqlMapper.QueryForObject <Speciallinetype>(stmtId, id);

            return(result);
        }
Пример #2
0
        public int FindCountByTypename(Speciallinetype obj)
        {
            String stmtId = "Speciallinetype.GetFindByTypenameCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
Пример #3
0
        public void Reload(Speciallinetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Speciallinetype.Find";

            this.sqlMapper.QueryForObject <Speciallinetype>(stmtId, obj, obj);
        }
Пример #4
0
        public void Delete(Speciallinetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Speciallinetype.Delete";

            this.sqlMapper.Delete(stmtId, obj);
        }
Пример #5
0
        public void Update(Speciallinetype obj)
        {
            String stmtId = "Speciallinetype.Update";

            this.sqlMapper.Update(stmtId, obj);
        }