Example #1
0
        public Trunktimetype Find(Int64 id)
        {
            String        stmtId = "Trunktimetype.Find";
            Trunktimetype result = this.sqlMapper.QueryForObject <Trunktimetype>(stmtId, id);

            return(result);
        }
Example #2
0
        public int FindCountByTypename(Trunktimetype obj)
        {
            String stmtId = "Trunktimetype.GetFindByTypenameCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
Example #3
0
        public void Reload(Trunktimetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Trunktimetype.Find";

            this.sqlMapper.QueryForObject <Trunktimetype>(stmtId, obj, obj);
        }
Example #4
0
        public void Delete(Trunktimetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Trunktimetype.Delete";

            this.sqlMapper.Delete(stmtId, obj);
        }
Example #5
0
        public void Insert(Trunktimetype obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Trunktimetype.Insert";

            this.sqlMapper.Insert(stmtId, obj);
        }
Example #6
0
        public void Update(Trunktimetype obj)
        {
            String stmtId = "Trunktimetype.Update";

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