Exemplo n.º 1
0
        public Speciallinetype Find(Int64 id)
        {
            String          stmtId = "Speciallinetype.Find";
            Speciallinetype result = this.sqlMapper.QueryForObject <Speciallinetype>(stmtId, id);

            return(result);
        }
Exemplo n.º 2
0
        public int FindCountByTypename(Speciallinetype obj)
        {
            String stmtId = "Speciallinetype.GetFindByTypenameCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
Exemplo n.º 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);
        }
Exemplo n.º 4
0
        public void Delete(Speciallinetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Speciallinetype.Delete";

            this.sqlMapper.Delete(stmtId, obj);
        }
Exemplo n.º 5
0
        public void Update(Speciallinetype obj)
        {
            String stmtId = "Speciallinetype.Update";

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