Exemplo n.º 1
0
        public bool Del(wrenchspecies wrenchspecies)
        {
            string contion = string.Format("id='{0}'", wrenchspecies.id);

            return(ServerHelp.deleteDataByWhere <wrenchspecies>(_webip, contion));
        }
Exemplo n.º 2
0
        public bool Del(role role)
        {
            string contion = string.Format("id='{0}'", role.id);

            return(ServerHelp.deleteDataByWhere <role>(_webip, contion));
        }
Exemplo n.º 3
0
        public bool Del(wrench wrenchmodel)
        {
            string contion = string.Format("guid='{0}'", wrenchmodel.guid);

            return(ServerHelp.deleteDataByWhere <wrench>(_webip, contion));
        }
Exemplo n.º 4
0
        public bool Del(borrow borrowmodel)
        {
            string contion = string.Format("id='{0}'", borrowmodel.id);

            return(ServerHelp.deleteDataByWhere <borrow>(_webip, contion));
        }
        public bool Del(torquechecktarget torquechecktarget)
        {
            string contion = string.Format("id='{0}'", torquechecktarget.id);

            return(ServerHelp.deleteDataByWhere <torquechecktarget>(_webip, contion));
        }
        public bool Del(torquecheckrecord checkrecord)
        {
            string contion = string.Format("id='{0}'", checkrecord.id);

            return(ServerHelp.deleteDataByWhere <torquecheckrecord>(_webip, contion));
        }
Exemplo n.º 7
0
        public bool delete(Model.UserToRoleModel.usertorole usertorolemodel)
        {
            string contion = string.Format("id='{0}'", usertorolemodel.id);

            return(ServerHelp.deleteDataByWhere <Model.UserToRoleModel.usertorole>(_webip, contion));
        }
Exemplo n.º 8
0
        public bool Del(duties duty)
        {
            string contion = string.Format("id='{0}'", duty.id);

            return(ServerHelp.deleteDataByWhere <duties>(_webip, contion));
        }
Exemplo n.º 9
0
        public bool Delete(users user)
        {
            string sql = string.Format("guid='{0}'", user.guid);

            return(ServerHelp.deleteDataByWhere <users>(_webserviceip, sql));
        }