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

            return(result);
        }
Ejemplo n.º 2
0
        public int FindCountByRightname(Vrightsfullinfo obj)
        {
            String stmtId = "Vrightsfullinfo.GetFindByRightnameCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
Ejemplo n.º 3
0
        public void Reload(Vrightsfullinfo obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Vrightsfullinfo.Find";

            this.sqlMapper.QueryForObject <Vrightsfullinfo>(stmtId, obj, obj);
        }
Ejemplo n.º 4
0
 public void testFindById()
 {
     Vrightsfullinfo rightList = this.rightsDao.Find(1);
 }