public int FindCountByUsername(Vdepotinformation obj)
        {
            String stmtId = "Vdepotinformation.GetFindByUsernameCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
        public Vdepotinformation Find(Int64 id)
        {
            String            stmtId = "Vdepotinformation.Find";
            Vdepotinformation result = this.sqlMapper.QueryForObject <Vdepotinformation>(stmtId, id);

            return(result);
        }
        public void Reload(Vdepotinformation obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Vdepotinformation.Find";

            this.sqlMapper.QueryForObject <Vdepotinformation>(stmtId, obj, obj);
        }