コード例 #1
0
        internal static int UpdateAppInstanceId(Rel_AppInstance_AppService info)
        {
            string sql = "update Rel_AppInstance_AppService set AppService=@AppService where AppInstanceId=@AppInstanceId";

            return(Update <Rel_AppInstance_AppService>(con, sql, info));
        }
コード例 #2
0
        internal static int Add(Rel_AppInstance_AppService info)
        {
            string sql = "insert into Rel_AppInstance_AppService(Id,AppInstanceId,AppService,IsCompare) values(@Id,@AppInstanceId,@AppService,@IsCompare)";

            return(Insert <Rel_AppInstance_AppService>(con, sql, info));
        }